laravel File code example
Example 1: laravel storage hard link
php artisan storage:link
Example 2: laravel storage get file path
use Illuminate\Support\Facades\Storage;
$path = Storage::path('file.jpg');
Example 3: laravel store file
$path = $request->file('avatar')->store(
'avatars', 'public'
);
Example 4: laravel filesystem
$exists = Storage::disk('s3')->exists('file.jpg');