| 123456789101112131415161718192021222324252627 | 
							- <?php
 
- return array(
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Named Views
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| All of the named views for your application. Once you have defined the
 
- 	| named view, you can create a View instance for that view using the
 
- 	| View::of dynamic method.
 
- 	|
 
- 	| For example, if you define a "layout" named view, you could create an
 
- 	| instance of that View by calling: View::of_layout().
 
- 	|
 
- 	| For more info, check out: http://laravel.com/docs/start/views#named
 
- 	|
 
- 	*/
 
- 	'names' => array(
 
- 		'home' => 'home/index',
 
- 	),
 
- );
 
 
  |