我正在使用Laravel 5
,一切正常,但我无法扩展主刀片模板,下面是我的层次结构
resource/views/master.blade.php
resource/views/welcome.blade.php
resource/views/pages/about.blade.php
当extend
welcome.blade.php
中的主刀片正常工作时,图像加载完美,样式加载完美,但当extend
图像中的pages/about.blade.php
主刀片未加载时和样式也没有加载。我正在使用@extends('master')
进行扩展。可能是什么问题?因为我正在仔细检查documentations & Laracasts video tutorials
,所以我的头颅旋转着。请帮我。谢谢
答案 0 :(得分:0)
您已添加
@yield
@section
@parent
@stop
哪里需要并且参数正确?
答案 1 :(得分:0)
那么你如何在扩展文件中编写它?我这样做:
@extends('main') @section('content') html stuff and blade stuff @stop
然后在主文件中,您必须
yield('content')
解决方案是一个缺失的" /"在链接中,所以链接应该以前导" /"开头,如src =" /link/to/img.png"
答案 2 :(得分:0)
请使用示例代码段更详细地说明。 据我所知,试试这样使用 -
<link rel="stylesheet" href="/css/style.css">
如果问题得到解决或无法解决,请告诉我们。