php - how to show title as url instead of id in laravel 5.1? -


in controller

 public function show($id)  {   } 

in route

route::get('post/{id}','postcontroller@show'); 

how show title url instead of id ? , possible change url title otherwise need specify unique title in database table ?

in controller

public function show($title) // understanding  {   } 

in route

route::get('post/{title}','postcontroller@show'); 

in view use title instead of id.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -