File tree 3 files changed +3
-2
lines changed
resources/views/components/layouts
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ npm-debug.log
5
5
yarn-error.log
6
6
yarn.lock
7
7
package-json.lock
8
+ composer.lock
8
9
pnpm-lock.yml
9
10
/vendor
10
11
composer.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
147
147
</div >
148
148
<div class =" mt-6 flex flex-col space-y-4" >
149
149
<x-nav .item
150
- :href =" route('profile')"
150
+ :href =" route('profile', ['user' => $user->username] )"
151
151
:title =" __('global.navigation.profile')"
152
152
/>
153
153
<x-nav .item
Original file line number Diff line number Diff line change 10
10
Route::get ('/dashboard ' , Account \Dashboard::class)->name ('dashboard ' );
11
11
});
12
12
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