@extends('admin.layouts.layouts') @section('content')
{{ $appointmentStudent->student->name ?? 'No teacher assigned' }}
{{ $appointmentStudent->appointment->teacher->name ?? 'No teacher assigned' }}
{{ $appointmentStudent->appointment->curriculum->name ?? 'No curriculum assigned' }}
Day: {{ ucfirst($appointmentStudent->appointment->day) }}
Time From: {{ $appointmentStudent->appointment->time_from }}
Time To: {{ $appointmentStudent->appointment->time_to }}
No appointments available.
@endif