Check the countries where this service should be available and set prices for each.
@foreach($countries as $countryCode => $countryData)
@php
$existingPrice = $existingPrices[$countryCode] ?? null;
$isChecked = $existingPrice && $existingPrice->is_active;
@endphp
Total Price:
{{ $countryData['currency'] }}{{ number_format(($existingPrice->visament_fee ?? 0) + ($existingPrice->government_fee ?? 0), 2) }}
@endforeach