【发布时间】:2014-12-07 07:31:03
【问题描述】:
我对 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)
【问题讨论】: