@php use Carbon\Carbon; use App\Enums\TeacherCourseType; $fieldsToCheck = [ 'name', 'subject_id', 'grade_id', 'date_range', 'shifts', 'start_time', 'end_time', 'teach_address', 'teach_link', 'price', 'type', 'image', ]; $shouldShowModal = false; foreach ($fieldsToCheck as $field) { if ($errors->has($field)) { $shouldShowModal = true; break; } } @endphp @push('style') @vite(['resources/css/teachers/teacher_register_online_course.css']) @endpush @if ($shouldShowModal) @endif