{{ __('Cita') }}

{{ __('Lista del dia') }} @can('update', $appointment) {{ __('Editar') }} @endcan

{{ __('Horario') }}: {{ $appointment->starts_at->translatedFormat('d M Y H:i') }} - {{ $appointment->ends_at->format('H:i') }}

@if ($appointment->title)

{{ __('Motivo') }}: {{ $appointment->title }}

@endif

{{ __('Paciente') }}: {{ $appointment->patient->name }}

{{ __('Titular') }}: {{ $appointment->client->name }}

@if ($appointment->assignedUser)

{{ __('Medico') }}: {{ $appointment->assignedUser->name }}

@endif @if ($appointment->author)

{{ __('Registrada por') }} {{ $appointment->author->name }}

@endif @if ($appointment->notes)

{{ $appointment->notes }}

@endif
@can('delete', $appointment) @if ($appointment->status !== 'cancelled')
@csrf @method('delete')
@endif @endcan