Add party page
All checks were successful
Deploy App / deploy (push) Successful in 10s

This commit is contained in:
2025-12-27 17:15:59 +01:00
parent 45fe15eef2
commit 1576048402
6 changed files with 630 additions and 34 deletions

View File

@@ -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');