예제 #1
0
 public function canDoRecycling()
 {
     return CalendarEvent::where('user_id', $this->id)->whereRaw('WEEKOFYEAR(starts_at) = WEEKOFYEAR(NOW())')->whereRaw('2 BETWEEN WEEKDAY(starts_at) and WEEKDAY(ends_at)')->whereRaw('HOUR(starts_at) < 10')->count() == 0;
     // is starting at more than the time requred to do the recycling
 }