filters.php 873 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Filters
  6. |--------------------------------------------------------------------------
  7. |
  8. | Filters provide a convenient method for filtering access to your route
  9. | functions. To make your life easier, we have already setup basic filters
  10. | for authentication and CSRF protection.
  11. |
  12. | For more information, check out: http://laravel.com/docs/basics/routes#filters
  13. |
  14. */
  15. 'before' => function()
  16. {
  17. // Do stuff before every request is executed.
  18. },
  19. 'after' => function($response)
  20. {
  21. // Do stuff after every request is executed.
  22. },
  23. 'auth' => function()
  24. {
  25. return ( ! Auth::check()) ? Redirect::to_login() : null;
  26. },
  27. 'csrf' => function()
  28. {
  29. return (Input::get('csrf_token') !== Form::raw_token()) ? Response::view('error/500', 500) : null;
  30. },
  31. );