コード例 #1
0
ファイル: ReportingRepo.php プロジェクト: jdelise/career_site
 public function appointments_by_date()
 {
     $result = Appointment::whereBetween('appointment_date', [$this->start, $this->end])->with('lead')->get();
     return $result;
 }