@extends('layouts.master') @section('title', 'Dashboard') @push('css') @endpush @section('content')

Dashboard

Hello, {{ $user?->user->name }}.

See the following table to check your class schedules.

@if (count($classSchedules) > 0) @foreach ($classSchedules as $schedule) @endforeach @else @endif
Batch Day Time Actions
{{ $schedule?->batchDay?->batch->title }} {{ Carbon\Carbon::parse($schedule->date)->format('d F, Y') }} ({{ $schedule->day_name }}) {{ Carbon\Carbon::parse($schedule?->batchDay?->start_time)->format('h:i A') }} - {{ Carbon\Carbon::parse($schedule?->batchDay?->end_time)->format('h:i A') }}
No schedule found.
@endsection