I'm using App::abort(404); to force a 404 however I'm getting the standard stack trace and Laravel doesn't seem to listen to the following error handler I've added to app/start/global.php
App::missing(function($exception)
{
return View::make('errors.404');
});