global.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Register The Laravel Class Loader
  5. |--------------------------------------------------------------------------
  6. |
  7. | In addition to using Composer, you may use the Laravel class loader to
  8. | load your controllers and models. This is useful for keeping all of
  9. | your classes in the "global" namespace without Composer updating.
  10. |
  11. */
  12. ClassLoader::addDirectories(array(
  13. app_path().'/controllers',
  14. app_path().'/models',
  15. app_path().'/database/seeds',
  16. ));
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Application Error Logger
  20. |--------------------------------------------------------------------------
  21. |
  22. | Here we will configure the error logger setup for the application which
  23. | is built on top of the wonderful Monolog library. By default we will
  24. | build a rotating log file setup which creates a new file each day.
  25. |
  26. */
  27. Log::useDailyFiles(__DIR__.'/../storage/logs/log.txt');
  28. /*
  29. |--------------------------------------------------------------------------
  30. | Application Error Handler
  31. |--------------------------------------------------------------------------
  32. |
  33. | Here you may handle any errors that occur in your application, including
  34. | logging them or displaying custom views for specific errors. You may
  35. | even register several error handlers to handle different types of
  36. | exceptions. If nothing is returned, the default error view is
  37. | shown, which includes a detailed stack trace during debug.
  38. |
  39. */
  40. App::error(function(Exception $exception, $code)
  41. {
  42. Log::error($exception);
  43. });
  44. /*
  45. |--------------------------------------------------------------------------
  46. | Require The Filters File
  47. |--------------------------------------------------------------------------
  48. |
  49. | Next we will load the filters file for the application. This gives us
  50. | a nice separate location to store our route and application filter
  51. | definitions instead of putting them all in the main routes file.
  52. |
  53. */
  54. require __DIR__.'/../filters.php';