コード例 #1
0
ファイル: Main.php プロジェクト: kytel0925/boletines-simples
 public function index()
 {
     if (!Auth::check()) {
         $auth = new AuthController();
         return $auth->getLogin();
     }
     return redirect()->intended('dashboard');
 }