Example #1
0
 public static function getWeeksForUser($user)
 {
     $self = new self();
     $dishNo = $self->ofUser($user)->count();
     $dishNo = ceil($dishNo / 7);
     $alpha = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X ', 'Y', 'Z');
     return array_slice($alpha, 0, $dishNo);
 }