Commit 277d1611 by Michael Hasselbring

removed views/composters.php

parent 8068a88b
<?php
return array(
/*
|--------------------------------------------------------------------------
| View Composers
|--------------------------------------------------------------------------
|
| View composers provide a convenient way to add common elements to a view
| each time it is created. For example, you may wish to bind a header and
| footer partial each time the view is created.
|
| The composer will receive an instance of the view being created, and is
| free to modify the view however you wish. Be sure to always return the
| view instance at the end of your composer.
|
| For more information, check out: http://laravel.com/docs/start/views#composers
|
*/
'home/index' => function($view)
{
return $view;
},
);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment