I found this package useful for generating SEO friendly URLs - https://github.com/cocur/slugify You need to convert title of page or post and save these slugs in database.
Later you can generate SEO friendly URL and lookup your page through router
Route::get('{slug?}', array('uses' => 'PagesController@index'))->where('slug', '.*');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community