I am having a bit of trouble with the routing.
I\'m working on a CMS, and i need two primary routes. /admin and /(:any). The admin
/admin
/(:any)
admin
Add this in the end of routes file
App::missing(function($exception) { return View::make('notfound'); });
from http://scotch.io/tutorials/simple-and-easy-laravel-routing