galka/laravel-faker-image

The package for Laravel complements the fake image generation methods.

1.0 2023-05-17 05:40 UTC

This package is auto-updated.

Last update: 2024-09-17 08:47:35 UTC


README

To generate images, you can use the LoremFlickr service.

You can also generate an image randomly from the Fixtures folder

Installation

  • composer require galka/laravel-faker-image

Publish

  • php artisan vendor:publish --provider='Galka\FakerImageGenerator\Providers\FakerImageProvider'

Factory usage

  • will generate a 600 * 600 image in the storage/images directory with an image of a dog:

$this->faker->imageLoremFlickr('images', 600, 600, 'dog')

  • generate a random image from the test/Fixtures folder

$this->faker->imageRandomFromFixtures('images/products', false),