2014-04-10 52 views
0

我有login.blade.phpviews/users/,我想排除我的主佈局。排除主佈局的視圖?

相反,我希望登錄頁面是一個獨立的頁面,只有登錄表單。

我該怎麼做到這一點?

回答

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> 
+0

我做了你的建議,但我仍然看到屬於主要主佈局在登錄頁面頁眉和側邊欄。這是[登錄主版面](http://pastebin.com/DPbUjE2z),這是[登錄視圖](http://pastebin.com/VSKY9qaF) – Halnex

+0

必須是佈局或視圖中的內容。 Smartadmin非常龐大,我也在這裏使用它。從較小的東西開始,刪除所有這些smartadmin html和css,只是爲了測試,只留下一個基本的html,表單和輸入,然後逐步添加標記。 –