start = Carbon::create()->subYears(2)->startOfYear(); $this->end = Carbon::now(); } /** * Run the database seeds. * * @return void */ public function run() { $current = clone $this->start; while ($current < $this->end) { $month = $current->format('F Y'); $current->addMonth(); } } }