Guest User

Untitled

a guest
May 20th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Route::get('/', 'HomeController@index')->name('home');
  2. Route::get('/showContent/{content}', 'HomeController@showContent');
  3.  
  4. Route::get('/{content?}', 'HomeController@index')->name('home');
  5.  
  6. public function index($slug)
  7. {
  8. if ($slug != null) {
  9. $this->showContent($slug);
  10. } else {
  11. return view('layouts.frontend.content');
  12. }
  13. }
Add Comment
Please, Sign In to add comment