toby/config/filesystems.php
Adrian Hopek 7dca5d1e6c #4 - wip
2022-01-14 15:09:08 +01:00

24 lines
582 B
PHP

<?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"),
public_path("avatars") => storage_path("app/avatars"),
],
];