change address rule, email content and admin event crud

This commit is contained in:
Eric Li
2025-06-16 18:37:36 +08:00
parent b12cd07419
commit 32b04d09c3
29 changed files with 1139 additions and 122 deletions

View 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'),
];