我在login.blade.php
中views/users/
,我想从我的主布局中排除。
相反,我希望登录页面是一个独立的页面,只有登录表单。
我怎么能实现这个目标?
答案 0 :(得分:4)
为登录页面使用不同的布局:
档案app/views/login.blade.php
:
@extends('layouts.standalone')
@section('content')
...
@stop
对于您的其他页面:
档案app/views/home.blade.php
:
@extends('layouts.master')
@section('content')
...
@stop
在这里你的布局:
档案app/views/layouts/standalone.blade.php
:
<html>
<body>
This is a master layout
@yield('content')
</body>
</html>
档案app/views/layouts/master.blade.php
:
<html>
<body>
This is a standalone layout
@yield('content')
</body>
</html>