Fix blade template syntax for accessory fields

This commit is contained in:
snipe
2025-10-14 13:45:58 +01:00
committed by GitHub
parent f1883c8004
commit b91d23023d
+2 -2
View File
@@ -947,9 +947,9 @@
@foreach ($user->accessories as $accessory)
<tr>
<td>{{ $accessory->pivot->id }}</td>
<td>{!!$accessory->present()->nameUrl()!!}</td>
<td>{!! $accessory->present()->nameUrl() !!}</td>
<td>{{ Helper::getFormattedDateObject($accessory->pivot->created_at, 'datetime', false) }}</td>
<td>{!! $accessory->pivot->note !!}</td>
<td>{{ $accessory->pivot->note }}</td>
<td>
{!! Helper::formatCurrencyOutput($accessory->purchase_cost) !!}
</td>