File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
resources/views/components/layouts Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ npm-debug.log
55yarn-error.log
66yarn.lock
77package-json.lock
8+ composer.lock
89pnpm-lock.yml
910/vendor
1011composer.phar
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ class="relative inline-flex items-center justify-center rounded-lg bg-white p-2
147147 </div >
148148 <div class =" mt-6 flex flex-col space-y-4" >
149149 <x-nav .item
150- :href =" route('profile')"
150+ :href =" route('profile', ['user' => $user->username] )"
151151 :title =" __('global.navigation.profile')"
152152 />
153153 <x-nav .item
Original file line number Diff line number Diff line change 1010 Route::get ('/dashboard ' , Account \Dashboard::class)->name ('dashboard ' );
1111});
1212
13- Route::get ('/@{user:username? } ' , Account \Profile::class)->name ('profile ' );
13+ Route::get ('/@{user:username} ' , Account \Profile::class)->name ('profile ' );
You can’t perform that action at this time.
0 commit comments