我想为我的网站定义多个模板,我可以在设置页面中对其进行更改。 我该怎么办 ?
答案 0 :(得分:2)
您可以像这样制作多个模板。 以下是layouts文件夹中的两个布局文件。 app.php 和 admin.php 您可以像这样使用这些。
app.php
@extends('layouts.app')
@section('content')
//your current file code
@endsection
admin.php
@extends('layouts.admin')
@section('content')
//your current file code
@endsection
希望这会对您有所帮助。