dev-master
9999999-devA package to optimize the dimensions of images in your web app.
MIT
The Requires
by Alban Afmeti
Wallogit.com
2017 © Pedro Peláez
A package to optimize the dimensions of images in your web app.
Thumbnail is a Laravel package that you can use to optimize the dimensions of your images on your site or web app. So every time you need an image with specific dimensions you only provide them and the image will be automatically generated for you., (*1)
This package is installed via Composer. To install, simply add it
to your composer.json file:, (*2)
{
"require": {
"noisim/thumbnail": "dev-master"
}
}
and run composer to update the dependencies composer update., (*3)
Then open your Laravel config file config/app.php and in the $providers array add the service provider for this package., (*4)
\Noisim\Thumbnail\ThumbnailServiceProvider::class
Finally generate the configuration file running in the console:, (*5)
php artisan vendor:publish --tag=config
A package to optimize the dimensions of images in your web app.
MIT