我将Laravel 5与Blade模板一起使用。我的模板如下所示:
drone.blade.php
@include('drone.gallery')
drone / gallery.php
{{ url('images-gallery/DSC_0072.JPG') }}
但是,url()
函数在我的包含文件中不起作用。如果我将{{ url('images-gallery/DSC_0072.JPG') }}
行复制到 drone.blade.php ,它将按预期工作。
为什么url()
参数在include内不起作用?
谢谢。
答案 0 :(得分:4)
我可以看到您的文件名是gallery.php。
您能否将其更改为gallery.blade.php