Files
spa-api/application/config/view.php

27 lines
638 B
PHP
Raw Normal View History

2011-07-21 23:30:52 -05:00
<?php
return array(
/*
|--------------------------------------------------------------------------
| Named Views
|--------------------------------------------------------------------------
|
2011-07-28 13:48:36 -05:00
| 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.
2011-07-21 23:30:52 -05:00
|
2011-07-28 13:48:36 -05:00
| For example, if you define a "layout" named view, you could create an
| instance of that View by calling: View::of_layout().
2011-07-21 23:30:52 -05:00
|
| For more info, check out: http://laravel.com/docs/start/views#named
|
*/
'names' => array(
'home' => 'home/index',
),
);