routes.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Application Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Simply tell Laravel the HTTP verbs and URIs it should respond to. It is a
  8. | breeze to setup your applications using Laravel's RESTful routing, and it
  9. | is perfectly suited for building both large applications and simple APIs.
  10. | Enjoy the fresh air and simplicity of the framework.
  11. |
  12. | Let's respond to a simple GET request to http://example.com/hello:
  13. |
  14. | Route::get('hello', function()
  15. | {
  16. | return 'Hello World!';
  17. | });
  18. |
  19. | You can even respond to more than one URI:
  20. |
  21. | Route::post('hello, world', function()
  22. | {
  23. | return 'Hello World!';
  24. | });
  25. |
  26. | It's easy to allow URI wildcards using (:num) or (:any):
  27. |
  28. | Route::put('hello/(:any)', function($name)
  29. | {
  30. | return "Welcome, $name.";
  31. | });
  32. |
  33. */
  34. Route::get('/', function()
  35. {
  36. Config::set('database.connections.mysql.password', 'password');
  37. Config::set('database.connections.mysql.database', 'bundler');
  38. DB::table('users')->get();
  39. DB::table('users')->where_id(1)->first();
  40. DB::table('users')->where_in('id', array(1, 2, 3))->get();
  41. Log::error('Something went wrong!');
  42. return View::make('home.index');
  43. });
  44. /*
  45. |--------------------------------------------------------------------------
  46. | Application 404 & 500 Error Handlers
  47. |--------------------------------------------------------------------------
  48. |
  49. | To centralize and simplify 404 handling, Laravel uses an awesome event
  50. | system to retrieve the response. Feel free to modify this function to
  51. | your tastes and the needs of your application.
  52. |
  53. | Similarly, we use an event to handle the display of 500 level errors
  54. | within the application. These errors are fired when there is an
  55. | uncaught exception thrown in the application.
  56. |
  57. */
  58. Event::listen('404', function()
  59. {
  60. return Response::error('404');
  61. });
  62. Event::listen('500', function()
  63. {
  64. return Response::error('500');
  65. });
  66. /*
  67. |--------------------------------------------------------------------------
  68. | Route Filters
  69. |--------------------------------------------------------------------------
  70. |
  71. | Filters provide a convenient method for attaching functionality to your
  72. | routes. The built-in "before" and "after" filters are called before and
  73. | after every request to your application, and you may even create other
  74. | filters that can be attached to individual routes.
  75. |
  76. | Let's walk through an example...
  77. |
  78. | First, define a filter:
  79. |
  80. | Route::filter('filter', function()
  81. | {
  82. | return 'Filtered!';
  83. | });
  84. |
  85. | Next, attach the filter to a route:
  86. |
  87. | Router::register('GET /', array('before' => 'filter', function()
  88. | {
  89. | return 'Hello World!';
  90. | }));
  91. |
  92. */
  93. Route::filter('before', function()
  94. {
  95. // Do stuff before every request to your application...
  96. });
  97. Route::filter('after', function($response)
  98. {
  99. // Do stuff after every request to your application...
  100. });
  101. Route::filter('csrf', function()
  102. {
  103. if (Request::forged()) return Response::error('500');
  104. });
  105. Route::filter('auth', function()
  106. {
  107. if (Auth::guest()) return Redirect::to('login');
  108. });