#1 - project skeleton
This commit is contained in:
22
config/filesystems.php
Normal file
22
config/filesystems.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"default" => env("FILESYSTEM_DRIVER", "local"),
|
||||
"disks" => [
|
||||
"local" => [
|
||||
"driver" => "local",
|
||||
"root" => storage_path("app"),
|
||||
],
|
||||
"public" => [
|
||||
"driver" => "local",
|
||||
"root" => storage_path("app/public"),
|
||||
"url" => env("APP_URL") . "/storage",
|
||||
"visibility" => "public",
|
||||
],
|
||||
],
|
||||
"links" => [
|
||||
public_path("storage") => storage_path("app/public"),
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user