johan-code/backpack-image-uploader

This package is abandoned and no longer maintained. No replacement package was suggested.

uploader images with preview for backpack crud

v1.1.5 2019-02-17 21:53 UTC

This package is auto-updated.

Last update: 2020-11-06 13:26:36 UTC


README

This package is not maintained now

Laravel Backpack image uploader widget

Images uploader with preview for backpack crud.

Install on Laravel 5.5

  1. Require image-thumbs

  2. Install using composer (run in your terminal):

composer require johan-code/backpack-image-uploader
  1. Publish (run in your terminal):
php artisan vendor:publish --provider="JohanCode\BackpackImageUploader\ServiceProvider"
  1. Create table for temp images (run in your terminal):
php artisan migrate
  1. Make sure the folder for uploading exist

Install on Laravel 5.4

Add service provider in config/app.php:

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

... and follow main instruction.