Package is a simple service provider for Grafika library. A beautiful library will images
Begin by installing this package through Composer. Edit your project's composer.json file to require lemesdaniel/grafika-laravel.
"require": { "lemesdaniel/grafika-laravel": "dev-master" } Next, update Composer from the Terminal:
composer update
OR in bash
$ composer require lemesdaniel/grafika-laravel
Next, add your new provider to the providers array of config/app.php:
'providers' => [
// Other service providers...
Lemesdaniel\Grafika\Providers\GrafikaServiceProvider::class,
],