saulo-silva / NovaGallery

Photo gallery tool for Laravel Nova

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nova Gallery

Photo gallery tool for Laravel Nova.

preview

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require ericlagarda/nova-gallery

Then, register the tool in NovaServiceProvider.php

use SauloSilva\NovaGallery\NovaGallery;

public function tools()
{
    return [
        // ...
 
        new NovaGallery
    ];
}

Then, publish the migration and migrate the tables:

php artisan vendor:publish --tag=gallery-migration
php artisan migrate

And set the Gallery Storage disk on your env file:

GALLERY_DISK=my_custom_storage

Use

You can create albums and add photos into the albums. You can:

  • Change the name of each photo
  • Change the description of each photo
  • Reorder photos

About

Photo gallery tool for Laravel Nova


Languages

Language:Vue 53.8%Language:PHP 42.2%Language:Blade 2.1%Language:JavaScript 1.9%Language:SCSS 0.0%