{{-- Breadcrumb --}}
{{-- Search filter --}}
@foreach ($clients as $client) @endforeach
@forelse ($appointments as $index => $appointment) @empty @endforelse
{{ __('SN') }} {{ __('Email') }} {{ __('Phone') }} {{ __('Date') }} {{ __('Schedule') }} {{ __('Payment') }} {{ __('Action') }}
{{ ++$index }} {{ $appointment?->user?->name }} {{ $appointment?->user?->details?->phone }} {{ formattedDate($appointment->date) }} {{ strtoupper($appointment?->schedule?->start_time) . '-' . strtoupper($appointment?->schedule?->end_time) }} @if ($appointment?->order?->payment_status == 1)
{{ __('Success') }}
@else
{{ __('Pending') }}
@endif
@if ($appointment->payment_status == 1) @endif
@if (request()->get('par-page') !== 'all')
{{ $appointments->onEachSide(0)->links() }}
@endif