📤Import & Export

our resource class support import & export using Laravel-Excel
package
Using
first please install laravel-excel
composer require maatwebsite/excel -W
after that go to the Modules\Base\Config
and do like this
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;
Last updated