where('subject_id', $data['subject_id']) ->where('academic_year_id', $data['academic_year_id']) ->exists(); if ($exists) { Notification::make() ->title('Failed to save') ->body('A record for this class, subject, and academic year combination already exists.') ->danger() ->send(); $this->halt(); // Stop the save process } return $data; } }