我的laravel布局有问题。 所以我在views / layouts / main.blade.php中有一个yield('content') 现在我想扩展这个布局:views / categories / index.blade.php
@extends('layouts.main')
@section('content')
但我有一个错误:
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_PARSE)
syntax error, unexpected 'extends' (T_EXTENDS)
答案 0 :(得分:2)
@stop
之后你还应该有@section
。此外,在布局中,您应该@yield('content')
。