laravel 4中的路由参数

时间:2014-06-19 15:53:09

标签: laravel parameters laravel-4 routing

请检查有关此问题的路由:

    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搜索了确切的语法,但仍然没有得到它。

1 个答案:

答案 0 :(得分:0)

只需将路线改为

即可
Route::any('author/{id}' , array('as'=>'author', 'uses'=>'AuthorsController@view'));