@extends('admin.layout-price') @section('title', 'Multi-Country Price Management') @section('page-title', 'Multi-Country Price Management') @section('content')
Total Services
{{ $stats['total_services'] }}
Available
USA Services
{{ $stats['usa_services'] }}
$ USD
India Services
{{ $stats['india_services'] }}
₹ INR
UK Services
{{ $stats['uk_services'] }}
£ GBP
Quick Actions
Services - Multi-Country Pricing
@forelse($services as $service) @empty @endforelse
ID Service Name Available In Countries Actions
{{ $service->id }} {{ $service->menu_title ?? $service->title }}
{{ Str::limit($service->title, 50) }}
@php $activeCountries = $service->countryPrices->where('is_active', true); @endphp @if($activeCountries->count() > 0)
@foreach($activeCountries as $countryPrice) {{ strtoupper($countryPrice->country) }} ({{ $countryPrice->currency }}{{ number_format($countryPrice->total_price, 2) }}) @endforeach
@else Not Available @endif
Manage Countries

No services found

@if($services->hasPages())
{{ $services->links() }}
@endif
@endsection @push('scripts') @endpush