@extends('admin.layouts.layouts') @section('content')

{{ $appointment->teacher->name ?? 'No teacher assigned' }}

{{ $appointment->curriculum->name ?? 'No curriculum assigned' }}

@if ($appointment)

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

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

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

@else

No appointments available.

@endif
Go Back
@endsection