faker = Factory::create(); parent::__construct(); } /** * Execute the console command. * * @return int */ public function handle() { $count = $this->argument('count'); $this->info('Creating ' . $this->argument('count') . ' files!'); for ($max = 1; $max < $count; $max++) { Storage::disk('local')->put('factory_files/testfile_' . rand(0, 5000) . '.txt', $this->faker->paragraphs(40, true)); } $this->info('Finished creating files! They will be randomly picked by the factory.'); return 0; } }