从主布局中排除视图?

时间:2014-04-10 11:54:43

标签: php laravel laravel-4 blade

我在login.blade.phpviews/users/,我想从我的主布局中排除。

相反,我希望登录页面是一个独立的页面,只有登录表单。

我怎么能实现这个目标?

1 个答案:

答案 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>