This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
use App\Livewire\HomePage;
|
||||
use App\Livewire\Motion\Search as MotionSearch;
|
||||
use App\Livewire\Motion\Show as MotionShow;
|
||||
use App\Livewire\Party\Index as PartyIndex;
|
||||
use App\Livewire\Party\Show as PartyShow;
|
||||
use App\Livewire\Person\Search as PersonSearch;
|
||||
use App\Livewire\Person\Show as PersonShow;
|
||||
use App\Livewire\Settings\Appearance;
|
||||
@@ -20,6 +22,9 @@ Route::get('/ledamot/{personId}', PersonShow::class)->name('person.show');
|
||||
Route::get('/motion', MotionSearch::class)->name('motion.search');
|
||||
Route::get('/motion/{motionId}', MotionShow::class)->name('motion.show');
|
||||
|
||||
Route::get('/parti', PartyIndex::class)->name('party.index');
|
||||
Route::get('/parti/{partyCode}', PartyShow::class)->name('party.show');
|
||||
|
||||
Route::view('dashboard', 'dashboard')
|
||||
->middleware(['auth', 'verified'])
|
||||
->name('dashboard');
|
||||
|
||||
Reference in New Issue
Block a user