Last updated 2 years ago
our resource class support import & export using Laravel-Excel package
Laravel-Excel
composer require maatwebsite/excel -W
after that go to the Modules\Base\Config and do like this
Modules\Base\Config
return [ 'excel_import' => true, 'excel_export' => true ];
to disable import or export on any resource just use
public ?bool $import = false;
public ?bool $export = false;
first please install