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'),
|
||||
];
|
@ -39,6 +39,7 @@ return [
|
||||
* - boom!
|
||||
*/
|
||||
'styles' => [
|
||||
'https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.5/css/lightbox.min.css',
|
||||
base_path('vendor/backpack/theme-tabler/resources/assets/css/color-adjustments.css'),
|
||||
base_path('vendor/backpack/theme-tabler/resources/assets/css/colors.css'),
|
||||
],
|
||||
|
@ -115,6 +115,7 @@ return [
|
||||
|
||||
// JS files that are loaded in all pages, using Laravel's asset() helper
|
||||
'scripts' => [
|
||||
'https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.5/js/lightbox.min.js',
|
||||
// 'js/example.js',
|
||||
// 'https://cdn.jsdelivr.net/npm/vue@2.4.4/dist/vue.min.js',
|
||||
// 'https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js',
|
||||
|
Reference in New Issue
Block a user