【发布时间】:2013-02-25 17:50:00
【问题描述】:
这是问题所在,它没有读取@layout()
在文件夹 View/authors/index.blade.php 内
@layout('layouts.default')
@section('内容')
作者主页
@endsection
在文件夹 Controllers/authors.php 中
类 Authors_Controller 扩展 Base_Controller{
public $restful = true; public function get_index(){ return View::make('authors.index')->with('title', 'Autores e Livros'); }}
在文件夹 View/layouts/default.blade.php 中
基本的html
<html>
<head> <title> {{ $title }} </title> </head>
<body>
{{ $content }}
</body>
</html>
我的错误在哪里?为什么不读?
【问题讨论】:
标签: php frameworks laravel