@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' }}

@if ($appointmentStudent)

Day: {{ ucfirst($appointmentStudent->appointment->day) }}

Time From: {{ $appointmentStudent->appointment->time_from }}

Time To: {{ $appointmentStudent->appointment->time_to }}

@else

No appointments available.

@endif
Go Back
@endsection