1
0
Fork 0

resources/views/item/show.blade.php: show some more info about the item.

This commit is contained in:
Henrik Hautakoski 2023-09-14 11:20:24 +02:00
parent 23197cd6e2
commit f3ace72ad6

View file

@ -3,6 +3,43 @@
<x-slot name="title">{{ __('Item') }} - {{ $item->name }}</x-slot>
<div class="p-4">
<div class="mb-4">
<x-wowhead-link wh-id="{{ $item->external_id }}">{{ $item->name }}</x-wowhead-link>
</div>
@if (count($item->recipes) > 0)
<div class="mb-4">
<x-section-heading>
<h2 class="text-3xl">{{ __('Created by') }}</h2>
</x-section-heading>
<ul class="px-4 space-y-2">
@foreach($item->recipes as $recipe)
<li>
@if ($recipe->spell_id)
<x-wowhead-link type="spell" wh-id="{{ $recipe->spell_id }}" href="{{ route('recipe.show', [ 'recipe' => $recipe ]) }}">{{ $recipe->name }}</x-wowhead-link>
@else
{{ $recipe->name }}
@endif
</li>
@endforeach
</li>
</div>
@endif
@if (count($item->reagent_for) > 0)
<div class="mb-4">
<x-section-heading>
<h2 class="text-3xl">{{ __('Reagent for') }}</h2>
</x-section-heading>
<ul class="px-4 space-y-2">
@foreach($item->reagent_for as $recipe)
<li><x-recipe-link :recipe="$recipe" /></li>
@endforeach
</ul>
</div>
@endif
</div>
</x-layout>