Does it have to be the 'id' column in database table which works fine for
show($id), edit($id) method in controller?
I want to replace $id with the value of 'post_id' column in database table, but it throws error: ModelNotFoundException
How can I fix it?
sample code:
database table:
id(int), post_id(varchar32), post_title(varchar32), post_content(text)
routes:
Route::resource('posts', 'PostsController');
PostsController:
public function show($id) { return View::make('posts.show'); }
When I visit http://localhost/posts/1
it should return the view of post which has id 1 in the table.
What if I what to return the view based on post_id value in the table?
Does it have to replace the parameter in show() or ?
http://host/route_name/id-or-anything-else
. But if you are getting ModelNotFoundException is because FindOrFail or FirstOrFail is being used somewhere else in your code. I don't see them being used in Laravel source code, they must be yours. – Antonio Carlos Ribeiro