vitb/image-list

A Laravel Nova tool.

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

This package is auto-updated.

Last update: 2024-06-29 05:39:51 UTC


README

Laravel nova image-list tool

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,
    ];
}