This commit is contained in:
Your Name
2026-07-22 10:18:59 +08:00
parent 2530ddada6
commit 0fb03d0bca
618 changed files with 19445 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
return [
'path' => root_path() . 'uploads',
'max_size_mb' => 50,
'allowed_images' => ['image/jpeg', 'image/png', 'image/gif', 'image/webp'],
'allowed_videos' => ['video/mp4', 'video/webm', 'video/quicktime'],
'allowed_audios' => ['audio/mpeg', 'audio/wav', 'audio/ogg', 'audio/webm'],
'allowed_documents' => [
'application/pdf',
'text/plain',
'text/markdown',
'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
],
];