vitb/image-list

一个Laravel Nova工具。

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

This package is auto-updated.

Last update: 2024-09-29 06:14:21 UTC


README

安装

  • 安装包

composer require vitb/image-list

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