laravel-photogallery
Laravel Photogallery is an administrative interface for Laravel plus some useful modules that can be used in the frontend. You can upload images on the server, obtain thumbnails having different sizes and place them into galleries with a specific order., (*1)
-
Author: Paolo Niccolò Giubelli - ITestense SNC
-
Company Website: http://www.itestense.it
Warning!
This package is still in the early development stage, so please don't use it inproduction.
Be patient for a while! :-) If you want to collaborate, you're welcome., (*2)
Prerequisites
You need php-gd module., (*3)
Dependencies
This module will also install intervention/image
and illuminate/support
, (*4)
Install
Composer
Simply add this line to composer.json:, (*5)
"itestense/laravel-photogallery":"*"
and run composer update
. Then you need to register the service provider in config/app.php
in the providers
array., (*6)
'providers' => [
...
'Itestense\LaravelPhotogallery\LaravelPhotogalleryServiceProvider',
...
]
Assets
Publish the assets with:, (*7)
php artisan asset:publish itestense/laravel-photogallery
Configuration
Once the package is installed, publish the config file with:, (*8)
php artisan config:publish itestense/laravel-photogallery
Options
Below is a list of all the available options:, (*9)
Upload directory
The directory must exist, (*10)
...
'upload_dir'=>'/public/uploads/photos',
...
Route prefix
All plugins routes will prefixed with this string, (*11)
...
'route_prefix'=>'/admin/gallery',
...
Thumbnails
You can specify an arbitrary number of thumbnail formats, choosing maximum width (w
), height (h
) and compression quality (q
), (*12)
...
'formats'=>[
's1'=>['w'=>100,'h'=>null,'q'=>96],
'big'=>['w'=>1024,'h'=>768,'q'=>100],
...
],
...
Last edit: Saturday, 02. May 2015 07:02PM, (*13)