请检查有关此问题的路由:
Route::any('author/(:id)' , array('as'=>'author', 'uses'=>'AuthorsController@view'));
控制器:
public function view($id){
return View::make('authors.view')
->with('title','Ini Halaman Penulis Berdasarkan Urutan Abjad')
->with('author', Author::find($id));
view.blade.php:
@extends('layouts.default')
@section('content')
<h1>{{ $author->name }}</h1>
<p>{{ $author->bio }}</p>
<p>{{ $author->updated_at }}</p>
@stop
我知道这个语法来自旧的laravel并且我从最新的laravel搜索了确切的语法,但仍然没有得到它。
答案 0 :(得分:0)
只需将路线改为
即可Route::any('author/{id}' , array('as'=>'author', 'uses'=>'AuthorsController@view'));