Initial commit
This commit is contained in:
19
config/livewire-quill.php
Normal file
19
config/livewire-quill.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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),
|
||||
];
|
||||
Reference in New Issue
Block a user