Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 jetstream 的 laravel 8 我想知道如何将不同的用户(如管理员或用户)引导到不同的路线?RouteServiceProvider 有 Public const Home = ''; 但它只指向一条路线
我希望这可以帮助这是我解决问题的方法
我为管理员创建了一个新视图"admin/index.blade.php"
"admin/index.blade.php"
然后我将开发人员的角色分配给管理员,然后在我的路线中使用它
Route::middleware(['role:developer'])->get('/admin', function () { return view('admin.index'); })->name('admin');