/home/techb158/ileadtechnology.com/SSM/app/Http/Resources/Academic
NameSizeModeActions
BatchSummary.php8270644editdlrm
BatchSummaryCollection.php3960644editdlrm
ClassTeacher.php9950644editdlrm
ClassTeacherBatchWise.php11390644editdlrm
ClassTeacherBatchWiseCollection.php4050644editdlrm
ClassTeacherCollection.php3960644editdlrm
CourseSummary.php4760644editdlrm
CourseSummaryCollection.php3970644editdlrm
SubjectSummary.php7710644editdlrm
SubjectSummaryCollection.php3980644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Resources/Academic/ClassTeacherBatchWise.php (1139B)
$this->name, 'full_name' => $this->course->name.' - '.$this->name, 'course' => new CourseSummaryResource($this->whenLoaded('course')), 'class_teacher' => $this->getCurrentClassTeacher() ]; } /** * Get current class teacher * @return array */ private function getCurrentClassTeacher() { return new ClassTeacherResource($this->classTeachers->sortByDesc('date_effective')->filter(function ($class_teacher) { return ($class_teacher->date_effective <= Cal::today()); })->first()); } }