composers.php 1001 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | View Names & Composers
  6. |--------------------------------------------------------------------------
  7. |
  8. | Named views give you beautiful syntax when working with your views.
  9. | After you have defined a name for a view, you can create an instance of
  10. | that view using the expressive View::of dynamic method:
  11. |
  12. | return View::of_layout();
  13. |
  14. | For more information, check out: http://laravel.com/docs/start/views#named-views
  15. |
  16. | View composers provide a convenient way to add common elements to a view
  17. | each time it is created. For example, you may wish to bind a header and
  18. | footer partial each time the view is created.
  19. |
  20. | The composer will receive an instance of the view being created, and is
  21. | free to modify the view however you wish.
  22. |
  23. | For more information, check out: http://laravel.com/docs/start/views#composers
  24. |
  25. */
  26. 'home.index' => function($view)
  27. {
  28. //
  29. },
  30. );