Busy Booby
0
Q:

laravel download file from s3

$attachment = TicketAttachment::find($id);
$headers = [
    'Content-Type'        => 'application/jpeg',
    'Content-Disposition' => 'attachment; filename="'. $attachment->name .'"',
];
return \Response::make(Storage::disk('s3')->get($attachment->url), 200, $headers);
0
return Storage::download('file.jpg');

return Storage::download('file.jpg', $name, $headers);
0

New to Communities?

Join the community