composers.php 751 B

123456789101112131415161718192021222324252627
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | View Composers
  6. |--------------------------------------------------------------------------
  7. |
  8. | View composers provide a convenient way to add common elements to a view
  9. | each time it is created. For example, you may wish to bind a header and
  10. | footer partial each time the view is created.
  11. |
  12. | The composer will receive an instance of the view being created, and is
  13. | free to modify the view however you wish. Be sure to always return the
  14. | view instance at the end of your composer.
  15. |
  16. | For more information, check out: http://laravel.com/docs/start/views#composers
  17. |
  18. */
  19. 'home/index' => function($view)
  20. {
  21. return $view;
  22. },
  23. );