Custom Error 404 handling (start/global.php)
/* * handling all 404 errors */ App::missing(function($exception) { return Response::view('backend.errorView', array(), 404); });