argument('directory'))) { $this->error('Directory not found'); } $images = \File::files(__DIR__ . '/../../../database/seeders/images/' . $this->argument('directory')); switch ($this->argument('model')) { case 'Product': foreach (Product::all() as $item) { $this->info('Product: ' . $item->id . ' adding image...'); shuffle($images); if ($item->media()->count() == 0){ $name = $images[0]->getFilename(); $tempName = explode('.', $name); $item->name = readable($tempName[0]) . ' model ' . $item->id; } $item->addMedia($images[0]->getRealPath()) ->preservingOriginal() //middle method ->toMediaCollection(); //finishing method $item->save(); } break; case 'Category': foreach (Category::all() as $item) { $this->info('Category: ' . $item->name . ' adding image...'); shuffle($images); if (!\File::exists(storage_path().'/app/public/categories/')){ mkdir(storage_path().'/app/public/categories/', 0755, true); } \File::copy($images[0]->getRealPath(),storage_path().'/app/public/categories/' . $images[0]->getFilename()); $item->image = $images[0]->getFilename(); $i = Image::load($images[0]->getRealPath()) ->optimize() ->format('webp'); $i->save(storage_path() . '/app/public/categories/optimized-'. $item->image); shuffle($images); \File::copy($images[0]->getRealPath(),storage_path().'/app/public/categories/' . $images[0]->getFilename()); $item->bg = $images[0]->getFilename(); $i = Image::load($images[0]->getRealPath()) ->optimize() ->format('webp'); $i->save(storage_path() . '/app/public/categories/optimized-'. $item->bg); $item->save(); } break; case 'Group': foreach (Group::all() as $item) { $this->info('Group: ' . $item->name . ' adding image...'); shuffle($images); if (!\File::exists(storage_path().'/app/public/groups/')){ mkdir(storage_path().'/app/public/groups/', 0755, true); } \File::copy($images[0]->getRealPath(),storage_path().'/app/public/groups/' . $images[0]->getFilename()); $item->image = $images[0]->getFilename(); $i = Image::load($images[0]->getRealPath()) ->optimize() ->format('webp'); $i->save(storage_path() . '/app/public/groups/optimized-'. $item->image); shuffle($images); \File::copy($images[0]->getRealPath(),storage_path().'/app/public/groups/' . $images[0]->getFilename()); $item->bg = $images[0]->getFilename(); $i = Image::load($images[0]->getRealPath()) ->optimize() ->format('webp'); $i->save(storage_path() . '/app/public/groups/optimized-'. $item->bg); $item->save(); } break; case 'Post': foreach (Post::all() as $item) { $this->info('post: ' . $item->id . ' adding image...'); shuffle($images); $name = $images[0]->getFilename(); $item->addMedia($images[0]->getRealPath()) ->preservingOriginal() //middle method ->toMediaCollection(); //finishing method $item->save(); } break; default: $this->error('Model not valid'); } } }