$patch=Storage::disk('s3')->temporaryUrl($patch, now()->addMinutes(15));
return response()->file($patch);
$content = Storage::disk('s3')->get($path);
$header = [
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'inline; filename="'.$file->name.'"'
];
return Response::make($content, 200, $header);