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
You can pass disk option to method of \Illuminate\Http\UploadedFile
class:
$file = request()->file('image');
$file->store('toPath', ['disk' => 'public']);
or you can create new Filesystem disk and you can save it to that disk.
You can create a new storage disc in config/filesystems.php
:
'my_files' => [
'driver' => 'local',
'root' => public_path() . '/myfiles',
],
in controller:
$file = request()->file('image');
$file->store('toPath', ['disk' => 'my_files']);