add team view

This commit is contained in:
Andras Bacsai
2023-05-16 14:38:11 +02:00
parent 99be766e90
commit 846e74b8b5
5 changed files with 22 additions and 12 deletions

View File

@@ -128,6 +128,9 @@ Route::middleware(['auth'])->group(function () {
Route::get('/profile', function () {
return view('profile');
})->name('profile');
Route::get('/profile/team', function () {
return view('team');
})->name('team');
Route::get('/settings', function () {
$isRoot = auth()->user()->isRoot();