toby/config/filesystems.php
Adrian Hopek 5cb46d2fc4
#60 - fix avatars (#61)
* #60 - wip

* #60 - wip

* #60 - fix

Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
2022-02-23 11:11:53 +01:00

23 lines
518 B
PHP

<?php
declare(strict_types=1);
return [
"default" => env("FILESYSTEM_DISK", "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("avatars") => storage_path("app/avatars"),
],
];