opanegro/card-export-default-template-excel

一个 Laravel Nova 卡片。

0.0.1 2019-02-08 09:48 UTC

This package is auto-updated.

Last update: 2024-09-08 22:48:47 UTC


README

安装

composer require opanegro/card-export-default-template-excel

用法

  1. 在您的资源 nova 中添加变量,例如: app/Nova/Users.php
public static $exportLabelHeaders = ['ID', 'Name', 'Email'];
  1. 在资源函数中添加卡片
public function cards()
{
    return [
        new CardExportDefaultTemplateExcel(Users::class),
    ];
}