@props([
'fields' => [],
'labelClass' => 'small',
'valueClass' => 'fw-bolder text-primary',
'gutter' => '1',
'minWidth' => false,
'htmlFields' => []
])
@foreach($fields as $name => $value)
@continue(empty($value) || in_array($value, ['€', '%']))
-
{{ $name }}
@if(str($value)->endsWith('€'))
@dcf($value)€
@elseif(str($value)->endsWith('%'))
@dcf($value)%
@elseif(data_get($htmlFields, $name))
{!! $value !!}
@else
{{ $value }}
@endif
@endforeach