5
默認情況下,我們通常通過ID號搜索數據庫表上的任何條目。但我無法找到如何在名稱列中搜索任何條目。如何在雄辯Laravel中使用名稱查找條目?
這是我查找入口和渲染它的代碼來查看
控制器:作者
class Authors_Controller extends Base_Controller {
public $restful = true;
public function get_view($id){
$authorModel = Authors::find($id);
return View::make('authors.view')
->with('author', $authorModel)
->with('title', $authorModel->name);
}
}
型號:作者
<?php
class Authors extends Eloquent {
public static $table = 'authors';
}
路線:
Route::controller(Controller::detect());
Route::get('author/(:any)', array('as'=>'author', 'uses'=>'[email protected]'));
查看:
@layout('main.index')
@section('content')
<h1>{{$author->name}}</h1>
<p>
{{$author->bio}}
</p>
<small>
{{$author->created_at}} |
{{HTML::link(URL::$base.'/authors/', 'Go back')}}
</small>
@endsection
如何使URL作爲不顯示ID,但像
some.com/category/name(而不是some.com/顯示文章的名字類別/ ID)
謝謝,幫助很多 – monk
不幸的是沒有工作 – monk
確實兩個詞之間的空間很重要嗎? – monk