コード例 #1
0
ファイル: helpers.php プロジェクト: sectorr/core
 /**
  * Helper: Make a view.
  *
  * @param $view
  * @return string
  * @throws \Sectorr\Core\Exceptions\ViewNotFoundException
  */
 function view($view, $data = [])
 {
     return View::make($view, $data);
 }
コード例 #2
0
ファイル: WelcomeController.php プロジェクト: sectorr/sectorr
 public function index()
 {
     return View::make('home');
 }