20 lines
567 B
PHP
20 lines
567 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* The base folder to store the images in
|
|
*/
|
|
'storage_folder' => env('LIVEWIRE_QUILL_STORAGE_FOLDER', 'quill-images'),
|
|
|
|
/*
|
|
* Should the images be stored publically or not
|
|
*/
|
|
'store_publically' => env('LIVEWIRE_QUILL_STORE_PUBLICALLY', true),
|
|
|
|
/*
|
|
* Should the images be deleted from the server once deleted in the editor
|
|
* or retained for future use (note: the package will never re-use the same image)
|
|
*/
|
|
'clean_up_deleted_images' => env('LIVEWIRE_QUILL_CLEAN_UP_DELETED_IMAGES', true),
|
|
];
|