{{ __('Service name') }}:
@forelse ($filteredContracts as $service)

{{ $service['service_name'] ?? '' }}

{{ $service['symbol'] ?? '' }} {{ $service['price'] ?? '' }}
@if ($service['base_price']) @php $convertPrice = Auth::user()->params ? json_decode(Auth::user()->params, true)['convert_price'] ?? false : false; @endphp @if ($convertPrice)
{!! $service['convert_symbol'] !!} {!! $service['base_price_convert'] !!}
@else
{!! $service['symbol'] !!} {!! $service['base_price']['price'] !!}
@endif @endif
{!! $service['informations'] !!}
@foreach ($service['attributes'] as $attribute)
{{ $attribute['attribute'] ?? '' }}: {{ $attribute['value'] ?? '' }}
@endforeach
@if (!empty($service['parameters']->toArray())) @foreach ($service['parameters'] as $parameter)
{{ $parameter['value'] ?? '' }}
@endforeach @endif
@empty
{{ __('Services not found') }}
@endforelse