2017 © Pedro Peláez
 

library image-thumbs

trait for create image thumbs for models via InterventionImage

image

johan-code/image-thumbs

trait for create image thumbs for models via InterventionImage

  • Sunday, March 4, 2018
  • by johangit
  • Repository
  • 1 Watchers
  • 0 Stars
  • 76 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 12 % Grown

The README.md

This package is not maintained now, (*1)

Laravel image thumbs

Trait for create image thumbs for models via InterventionImage., (*2)

Install on Laravel 5.5

1) Install using composer (run in your terminal):, (*3)

composer require johan-code/image-thumbs

2) Publish (run in your terminal):, (*4)

php artisan vendor:publish --provider="JohanCode\ImageThumbs\ServiceProvider"

3) Set name of disk for uploading in /config/image-thumbs.php: php return [ 'disk_name' => 'public' ];, (*5)

4) Make sure the disk for uploading exist and available in public., (*6)

Example config /config/filesystems.php, (*7)

'disks' => [
    ...
    'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => '/storage',
    ],
    ...
],

Use laravel command for create symlink (run in your terminal):, (*8)

php artisan storage:link

Install on Laravel 5.4

Add service provider in config/app.php:, (*9)

'providers' => [
    ...
    JohanCode\ImageThumbs\ServiceProvider::class,
    ...
]

... and follow main instruction., (*10)

The Versions

04/03 2018

dev-master

9999999-dev https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image

04/03 2018

v1.2.1

1.2.1.0 https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image

08/12 2017

v1.2

1.2.0.0 https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image

15/09 2017

v1.1.1

1.1.1.0 https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image

14/09 2017

v1.1.0

1.1.0.0 https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image

24/08 2017

v1.0.0

1.0.0.0 https://github.com/johangit/image-thumbs

trait for create image thumbs for models via InterventionImage

  Sources   Download

MIT

laravel image