users as $user) { $sheets[] = new TimesheetPerUserSheet($user, $this->month); } return $sheets; } public function forUsers(Collection $users): static { $this->users = $users; return $this; } public function forMonth(Carbon $month): static { $this->month = $month; return $this; } }