@extends('admin.layout-price') @section('title', $countryName . ' Services') @section('page-title', $countryName . ' Services') @section('content')
@if($country === 'usa') 🇺🇸 @elseif($country === 'india') 🇮🇳 @elseif($country === 'uk') 🇬🇧 @elseif($country === 'canada') 🇨🇦 @elseif($country === 'australia') 🇦🇺 @endif {{ $countryName }} - All Services

Services available in {{ $countryName }}

Back to All
@forelse($services as $countryPrice) @empty @endforelse
ID Service Name Visament Fee Government Fee Total Actions
{{ $countryPrice->service_id }} {{ $countryPrice->service->menu_title ?? $countryPrice->service->title }}
{{ Str::limit($countryPrice->service->title, 50) }}
{{ $countryPrice->currency }}{{ number_format($countryPrice->visament_fee, 2) }} {{ $countryPrice->currency }}{{ number_format($countryPrice->government_fee, 2) }} {{ $countryPrice->currency }}{{ number_format($countryPrice->total_price, 2) }} Edit

No services available in {{ $countryName }} yet

Add Services
@if($services->hasPages())
{{ $services->links() }}
@endif
@endsection