How to make the Laravel storage path from Absolute to relative using artisan and terminal code example
Example 1: laravel store file
$path = $request->file('avatar')->store(
'avatars', 'public'
);
Example 2: laravel filesystem
$exists = Storage::disk('s3')->exists('file.jpg');