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

Appointments for {{ $teacher->name }}

{{ $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 to Back
@endsection