| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <?phpreturn array(	/*	|--------------------------------------------------------------------------	| Filters	|--------------------------------------------------------------------------	|	| Filters provide a convenient method for filtering access to your route	| functions. To make your life easier, we have already setup basic filters	| for authentication and CSRF protection.	|	| For more information, check out: http://laravel.com/docs/basics/routes#filters	|	*/	'before' => function()	{		// Do stuff before every request is executed.		},	'after' => function($response)	{		// Do stuff after every request is executed.	},	'auth' => function()	{		return ( ! Auth::check()) ? Redirect::to_login() : null;	},	'csrf' => function()	{		return (Input::get('csrf_token') !== Form::raw_token()) ? Response::make(View::make('error/500'), 500) : null;	},);
 |