arthedain/nova-excel-helper

Laravel Nova 工具。

0.1.1 2020-07-28 08:49 UTC

This package is auto-updated.

Last update: 2024-09-28 18:10:51 UTC


README

Laravel Nova 工具,用于导出和导入数据库到 Excel 文件

安装

composer require arthedain/nova-excel-helper

在 NovaServiceProvider 中包含工具

use Arthedain\NovaExcelHelper\NovaExcelHelper;

public function tools(){
    return [
        new NovaExcelHelper
    ];
}

发布配置文件

php artisan vendor:publish --provider="Arthedain\NovaExcelHelper\ToolServiceProvider" --tag="config"

在配置文件中,以键值对格式写入您要导入和导出的模型

// example
'classes' => [
    '\App\User' => 'User',
    '\App\News' => 'News',
],
本地化
"Nova Excel Helper": "Nova Excel Helper",
"Select resource": "Select resource",
"Pleace, select resource": "Pleace, select resource",
"Import": "Import",
"Select File": "Select File",
"Load only Excel file": "Load only Excel file",
"Export": "Export",
"Pleace, select file": "Pleace, select file",
"Success": "Success"