vitb/image-list

A Laravel Nova tool.

dev-master 2019-08-03 08:18 UTC

This package is auto-updated.

Last update: 2024-03-29 04:45:21 UTC


README

Installation

  • Install package

composer require vitb/image-list

  • Register tool inside app/Providers/NovaServiceProvider
use Vb\ImageList\ImageList;

/**
 * Get the cards that should be listed in the Nova sidebar.
 *
 * @return array
 */
public function tools()
{
    return [
        new ImageList,
    ];
}