laravel "Path is outside of the defined root, path: [../storage/tmp/5f981b16672ff/Planilha_Horas_Sobreaviso_Plantonista.xlsx]" code example
Example 1: laravel storage get file path
use Illuminate\Support\Facades\Storage;
$path = Storage::path('file.jpg');
Example 2: laravel filesystem
$exists = Storage::disk('s3')->exists('file.jpg');