change address rule, email content and admin event crud
This commit is contained in:
20
config/backpack/operations/export.php
Normal file
20
config/backpack/operations/export.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
use RedSquirrelStudio\LaravelBackpackExportOperation\Models\ExportLog;
|
||||
|
||||
/**
|
||||
* Configurations for ExportOperation.
|
||||
*/
|
||||
|
||||
return [
|
||||
'export_log_model' => ExportLog::class,
|
||||
|
||||
//Filesystem disk to store uploaded export files
|
||||
'disk' => env('FILESYSTEM_DISK', 'local'),
|
||||
|
||||
//Path to store uploaded export files
|
||||
'path' => env('BACKPACK_EXPORT_FILE_PATH', 'exports'),
|
||||
|
||||
//Queue to dispatch export jobs to
|
||||
'queue' => env('QUEUE_CONNECTION', 'sync'),
|
||||
];
|
Reference in New Issue
Block a user