Initial commit

This commit is contained in:
Ronald Huynen
2026-03-23 21:37:59 +01:00
commit 2547717edb
2193 changed files with 972171 additions and 0 deletions

19
config/livewire-quill.php Normal file
View 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),
];