| {{ $loop->iteration }} |
{{ $appointment->Date }} |
{{ $appointment->Time }} |
{{ $appointment->Duration }} |
@php
$services = $appointment->getServices($appointment->idAppointment);
@endphp
@if ($services->isEmpty())
-
@else
@foreach ($services as $key => $service)
{{ $service->Service_Description }}
@if ($key < count($services) - 1)
,
@endif
@endforeach
@endif
|
{{ $appointment->customers->Full_Name }} |
{{ $appointment->employees->Full_Name }} |
{{ number_format($appointment->Package_Amount, 2, '.', '') }}
|
{{ $appointment->Appointment_Status }} |
@endforeach