Add group creation and show current groups

This commit is contained in:
2026-03-02 00:19:55 +01:00
parent e405fec5c2
commit 4bdaf7a8ab
19 changed files with 1010 additions and 160 deletions

View File

@@ -6,8 +6,9 @@ use Illuminate\Support\Facades\Route;
Route::livewire('/', 'pages::landing');
Route::middleware(['auth'])->group(function () {
Route::livewire('/profile', 'pages::profile');
Route::livewire('/dashboard', 'pages::dashboard');
Route::livewire('/profile', 'pages::profile')->name('profile');
Route::livewire('/dashboard', 'pages::dashboard')->name('dashboard');
Route::livewire('/groups', 'pages::groups')->name('groups');
});
Route::get('/login', function () {