Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log
yarn-error.log
yarn.lock
package-json.lock
composer.lock
pnpm-lock.yml
/vendor
composer.phar
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/layouts/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class="relative inline-flex items-center justify-center rounded-lg bg-white p-2
</div>
<div class="mt-6 flex flex-col space-y-4">
<x-nav.item
:href="route('profile')"
:href="route('profile', ['user' => $user->username])"
:title="__('global.navigation.profile')"
/>
<x-nav.item
Expand Down
2 changes: 1 addition & 1 deletion routes/features/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
Route::get('/dashboard', Account\Dashboard::class)->name('dashboard');
});

Route::get('/@{user:username?}', Account\Profile::class)->name('profile');
Route::get('/@{user:username}', Account\Profile::class)->name('profile');
Loading