composers.php 699 B

1234567891011121314151617181920212223242526
  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.
  14. |
  15. | For more information, check out: http://laravel.com/docs/start/views#composers
  16. |
  17. */
  18. 'home/index' => function($view)
  19. {
  20. // Do anything you want to the view.
  21. },
  22. );