/** * Helper: Make a view. * * @param $view * @return string * @throws \Sectorr\Core\Exceptions\ViewNotFoundException */ function view($view, $data = []) { return View::make($view, $data); }
public function index() { return View::make('home'); }