1
0
Fork 0

resources/views/character/profession/show.blade.php: link character name in title back to character page.

This commit is contained in:
Henrik Hautakoski 2021-07-18 17:40:58 +02:00
parent fa64f54255
commit e5fa65a839

View file

@ -7,7 +7,10 @@
<x-race-icon class="w-8 h-8" :character="$ch_prof->character" />
<x-class-icon class="w-8 h-8" :name="$ch_prof->character->class" />
</div>
{{ $ch_prof->character->level }} {{ $ch_prof->character->name }}
<a href="{{ route('character.show', ['character' => $ch_prof->character ]) }}">
{{ $ch_prof->character->level }} {{ $ch_prof->character->name }}
</a>
</div>
</x-slot>