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
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);