Refactor UserController to ProfileController.
This commit is contained in:
parent
5117907a4d
commit
b76a997948
9 changed files with 23 additions and 23 deletions
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<div class="flex justify-end text-white space-x-4">
|
||||
@auth
|
||||
<a href="{{ route('user.index') }}"><strong>{{ auth()->user()->username }}</strong></a>
|
||||
<a href="{{ route('profile.index') }}"><strong>{{ auth()->user()->username }}</strong></a>
|
||||
<x-form method="DELETE" action="{{ route('auth.logout') }}">
|
||||
<a href="/" onclick="this.closest('form').submit();return false;">{{ __('Logout') }}</a>
|
||||
</x-form>
|
||||
|
|
|
|||
Reference in a new issue