Add group creation and show current groups
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user