示例#1
0
 /**
  * Add a view instance to the view data.
  *
  * @param string $key
  * @param string $view
  * @param array $data
  * @return \Themosis\View\View
  */
 public function nest($key, $view, array $data = array())
 {
     return $this->with($key, $this->factory->make($view, $data));
 }