2017-02-21 96 views
0

我使用make:auth命令創建了laravel 5登錄和註冊表單。但我在我的佈局文件夾中有home.blade.php和front.blade.php。我的問題是,我需要front.blade.php文件,當我作爲我的索引頁面(網站的開始頁面)訪問我的web應用程序。然後在我使用系統進行日誌記錄時需要使用home.blade.php文件。 (做cms作品)。我的事情的目標位置是routes.php文件登錄後如何管理laravel 5登錄頁面?

這是routes.php文件

Route::auth(); 






Route::get('/', function() { 
    return view('front'); 
}); 


Route::get('/home', function() { 
    return view('home'); 
}); 


Route::get('/about',function(){ 
    return view('about'); 
}); 

Route::get('/bod',function(){ 
    return view('bod'); 
}); 

Route::get('/st',function(){ 
    return view('st'); 
}); 

Route::get('/services',function(){ 
    return view('services'); 
}); 

Route::get('/contact',function(){ 
    return view('contact'); 
}); 

Route::get('/welcome',function(){ 
    return view('welcome'); 
}); 


Route::auth(); 

Route::get('/home', '[email protected]'); 

但是當我使用上述路線我的web應用程序總是重定向與系統記錄後front.blade.php文件。在使用系統進行日誌記錄之後,我需要使用home.blade.php重定向。

回答

0

您可以添加一個檢查前路中,如果用戶登錄重定向到家裏。

if (Auth::check()) { 
    return redirect('home'); 
} 
+0

sucess這個腳本路線::得到(「/」,函數(){ 如果( Auth :: check()){ return view('home'); } return view('front'); }); – flex