save image in public folder instead storage laravel 5

后端 未结 3 1926
无人及你
无人及你 2020-12-25 14:12

i wanna save my avatar at \"Public\" folder and ther retrieve.

ok. i can save it but in \"storage/app\" folder instead \"public\"

my friend told me go to \"c

3条回答
  •  生来不讨喜
    2020-12-25 15:10

    In config/filesystems.php, you could do this... change the root element in public

    'disks' => [
       'public' => [
           'driver' => 'local',
           'root'   => public_path() . '/uploads',
           'url' => env('APP_URL').'/public',
           'visibility' => 'public',
        ]
    ]
    

    and you can access it by

    Storage::disk('public')->put('filename', $file_content);
    

提交回复
热议问题