Skip to content

Commit

Permalink
Cleaning error 404 code
Browse files Browse the repository at this point in the history
  • Loading branch information
bestmomo committed Jan 25, 2015
1 parent 6a7f55c commit 80c8205
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,6 @@ public function index()
return view('front.index');
}

/**
* Display the missing page (404).
*
* @return Response
*/
public function missing()
{
return view('front.missing');
}

/**
* Change language.
*
Expand Down
1 change: 0 additions & 1 deletion app/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'uses' => 'HomeController@index',
'as' => 'home'
]);
Route::get('missing', 'HomeController@missing');
Route::get('language', 'HomeController@language');


Expand Down

0 comments on commit 80c8205

Please sign in to comment.