Exemplo n.º 1
0
 public function findUsersByCreatedDate(Carbon $fromDate, Carbon $toDate)
 {
     $toDate->setTime(23, 59);
     return User::with('country')->whereBetween('created_at', [$fromDate, $toDate])->whereAgency('')->get();
 }