overview.blade.php
@extend('common')
@section('content')
..some html code
@endsection
common.blade.php
..some html code
@include('includes.nav')
@yield('content')
..some html code
包括/ nav.php
<a href="{{ route('inventory') }} ">Inventory</a>
上面的代码在浏览器中打印出{{route('inventory')}}而不是值。
当我在overview.blade.php上试用它时,效果很好。
我们将非常感谢您的帮助。谢谢!
答案 0 :(得分:1)
将include/nav.php
重命名为include/nav.blade.php
,因为您希望Laravel Blade引擎编译此文件。
来自the docs:
Blade视图文件使用
.blade.php
文件扩展名,通常存储在resources/views
目录中。