Add TuxiNet branding and document templates

This commit is contained in:
Thomas
2025-10-28 13:56:54 +01:00
parent f956a735ca
commit 3755435890
48 changed files with 1762 additions and 1 deletions

7
config/files.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
return [
'max_upload_mb' => (int) env('MAX_UPLOAD_MB', 20),
'allowed_mime' => array_filter(array_map('trim', explode(',', env('ALLOWED_MIME', 'image/png,image/jpeg,image/gif,image/webp,application/pdf,application/zip')))),
'storage_path' => base_path('public/uploads'),
];