resources/views/livewire/recipes.blade.php: minor fix.
This commit is contained in:
parent
fecf3a1f00
commit
a4886705a7
1 changed files with 5 additions and 3 deletions
|
|
@ -19,9 +19,11 @@
|
|||
@foreach($recipes as $recipe)
|
||||
<tr class="focus:outline-none text-sm leading-none text-gray-800 bg-white hover:bg-gray-100 border-b border-t border-gray-100">
|
||||
<td class="px-3 py-4"><x-link href="{{ route('recipe.show', [ 'recipe' => $recipe ]) }}">{{ $recipe->name }}</x-link></td>
|
||||
<td class="px-3 py-4 flex items-center">
|
||||
<x-profession-icon class="w-4 h-4 mr-1" :name="$recipe->profession->name" />
|
||||
{{ $recipe->profession->name }}
|
||||
<td class="px-3 py-4">
|
||||
<div class="flex items-center">
|
||||
<x-profession-icon class="w-4 h-4 mr-1" :name="$recipe->profession->name" />
|
||||
{{ $recipe->profession->name }}
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-3 py-4">
|
||||
@if ($recipe->crafters->count() > 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue