1
0
Fork 0

resources/views/character/profession/show.blade.php: show wowhead link.

This commit is contained in:
Henrik Hautakoski 2021-06-29 17:13:47 +02:00
parent 57409690d4
commit 3face4481a

View file

@ -35,7 +35,12 @@
</h2>
<ul class="ml-2 space-y-2" x-show="open" x-transition>
@foreach($recipes as $recipe)
<li><x-link href="{{ route('recipe.show', [ 'recipe' => $recipe ]) }}">{{ $recipe->name }}</x-link></li>
<li class="flex">
<x-link href="{{ route('recipe.show', [ 'recipe' => $recipe ]) }}">{{ $recipe->name }}</x-link>
@if ($recipe->craft->external_id)
<x-wowhead class="h-5 w-5 ml-2" id="{{ $recipe->craft->external_id }}" />
@endif
</li>
@endforeach
</ul>
</span>