view.php 748 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Named Views
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you can define all of the named views for your application.
  9. |
  10. | Once you have defined the named view, you can create a View instance for
  11. | that view using the View::of dynamic method.
  12. |
  13. | For example, if you define a named view named "layout", you could create
  14. | an instance of that View by calling: View::of_layout().
  15. |
  16. | For more info, check out: http://laravel.com/docs/start/views#named
  17. |
  18. | Note: The view path should be relative to the application/view directory.
  19. |
  20. */
  21. 'names' => array(
  22. 'home' => 'home/index',
  23. ),
  24. );