我的laravel项目在localhost上运行正常,但是在共享共享上载项目后无法在活动域上运行。 我已经在Windows计算机上开发了laravel网站,并将其上传到Linux计算机上。登录用户通过检查用户角色重定向到/ home后,我有一个/ home路由。对于一个名为“数据输入”用户的用户来说,它工作正常,而对其他用户则无效。
这是我的路线-
Route::get('/home','HomeController@index')->name('index');
这是我的HomeController-
public function index()
{
if (auth::user()->userRole == 'super admin') {
return view('bcs.home.superAdminIndex');
}
if (auth::user()->userRole == 'admin') {
return view('bcs.home.adminIndex');
}
if (auth::user()->userRole == 'data entry') {
return view('bcs.home.dataEntryIndex');
}
if (auth::user()->userRole == 'payment verifier') {
return view('bcs.home.paymentVerifierIndex');
}
}