项目初始化

This commit is contained in:
2026-03-18 15:54:43 +08:00
commit dfcd762e23
601 changed files with 57883 additions and 0 deletions

20
config/filesystem.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
/**
* 文件系统配置BuildAdmin Upload 所需)
*/
return [
'default' => env('filesystem.driver', 'local'),
'disks' => [
'local' => [
'type' => 'local',
'root' => rtrim(runtime_path(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . 'storage',
],
'public' => [
'type' => 'local',
'root' => rtrim(base_path(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . 'public',
'url' => '/storage',
'visibility' => 'public',
],
],
];