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