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

Upgrade php version of xampp not success -

amazon web services - S3 and apache mod_proxy with basic authentication -

powershell - This solution contains one or more assemblies targeted for the global assembly cache -