LaravelPackages.net
Acme Inc.
Toggle sidebar
ericlagarda/nova-gallery

A Laravel Nova tool.

4.389
9
v1.3
About ericlagarda/nova-gallery

ericlagarda/nova-gallery is a Laravel package for a laravel nova tool.. It currently has 9 GitHub stars and 4.389 downloads on Packagist (latest version v1.3). Install it with composer require ericlagarda/nova-gallery. Discover more Laravel packages by ericlagarda or browse all Laravel packages to compare alternatives.

Last updated

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 EricLagarda\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

Star History Chart