laravel create file code example
Example 1: laravel link storage to public
php artisan storage:link
Example 2: laravel store file
$path = $request->file('avatar')->store(
'avatars', 'public'
);
Example 3: laravel filesystem
$exists = Storage::disk('s3')->exists('file.jpg');