{{ $city->getTranslations('name')['en'] ?? '-' }}
{{ $city->getTranslations('name')['ar'] ?? '-' }}
{{ $city->country->getTranslations('name')[app()->getLocale()] ?? $city->country->name }}
{{ $city->use_custom_price ? __('admin.yes') : __('admin.no') }}
@if ($city->use_custom_price && $city->price_per_minute !== null) {{ number_format($city->price_per_minute, 2) }} {{ __('admin.currency') }} @else {{ __('admin.uses_global_price', ['price' => number_format((float) (settings()['ride_price_per_minute'] ?? 0.45), 2)]) }} @endif