@extends('layouts.app') @section('title', __('services')) @push('styles') @endpush @section('content')

{{ __('services') }}

@if(session('success')) @endif
@forelse($services as $service)
{{ app()->getLocale() == 'ar' ? $service->name_ar : $service->name_en }}
{{ $types[$service->type] ?? $service->type }}
{{ number_format($service->price, 0) }}
@if($service->type === 'monthly_subscription_limited') @endif @if($service->type === 'one_time_service') @endif @if($service->type === 'ads_creation') @endif @if($service->type === 'web_development') @endif @if($service->type === 'domains_emails') @endif @if($service->type === 'app_development') @endif @if($service->type === 'wordpress_templates') @endif
@empty
{{ __('no_services_found') }}
@endforelse
@endsection