lundi 1 juillet 2019

How read values of config/filesystems.php

How in laravel 5.8 read values of config/filesystems.php, with default value :

return [

    'default' => env('FILESYSTEM_DRIVER', 'local'),


    'cloud' => env('FILESYSTEM_CLOUD', 's3'),


    'disks' => [

        'local' => [
            'driver' => 'local',
            'root' => storage_path('app'),
        ],

        'public' => [
            'driver' => 'local',
            'root' => storage_path('app/public'),
            'url' => env('APP_URL').'/storage',
            'visibility' => 'public',
        ],

I expected as :

$filesystem_pablic_path  = config('filesystem.disks.public');

but empty value returned ...



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire