Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. Config?
  4.  
  5. return array(
  6.     'default' => 'templates/wrapper', // layout.php
  7.     'home' => 'templates/home',
  8.     'guest' => 'templates/guest'
  9. );
  10.  
  11. Usages?
  12.  
  13. return View::layout()->bind('content', View::make('index'));
  14.  
  15. return View::layout(null, array('content' => View::make('index')));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement