view.php 638 B

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