Archived
1
0
Fork 0

Refactor UserController to ProfileController.

This commit is contained in:
Henrik Hautakoski 2021-07-20 15:38:57 +02:00
parent 5117907a4d
commit b76a997948
9 changed files with 23 additions and 23 deletions

View file

@ -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>