2015-08-15 125 views
0

正如標題中所述,當我嘗試擴展已擴展另一佈局/視圖的佈局/視圖時,出現「查看無法找到」錯誤。我可能會混淆版面和視圖。我可以做我想做的事嗎?我可以擴展一個blade.php,它已經爲Laravel 5擴展了blade.php嗎?

+0

是的,你可以。你的錯誤是由別的東西造成的。試着找出原因是什麼,或者用你的代碼更新問題,也許有人會幫忙。 –

回答

0

你必須要小心你的文件夾結構,例如:

/-----意見/佈局/ base.blade.php -----/

<h1>Hey there</h1> 
@yield('section1) 

然後你的第一個孩子應該是:

/-----意見/孩子的/ child1.blade.php -----/

@extends('layouts.base') 
@section('section1') 
    <p>this is section 1 on child</p> 
@stop 
@yield('section2') 

,孫兒後:

/-----意見/ grandchilds/grandchild1.blade.php -----/

@extends('childs.child1') 
@section('section2') 
    <p>this is section 2 on granchild</p> 
@stop 

終於可以致電盛大孩子控制器中是這樣的:

/----- ---- ../MyController.php/

... 
return view('grandchilds.grandchild1'); 
... 
相關問題