laravel storage path from dis code example
Example 1: laravel get path to storage folder
$path = storage_path('app/file.txt');
Example 2: laravel filesystem
$exists = Storage::disk('s3')->exists('file.jpg');
$path = storage_path('app/file.txt');
$exists = Storage::disk('s3')->exists('file.jpg');