Answers for "laravel download file from storage"

PHP
1

laravel get file contents from storage

$contents = Storage::disk('local')->get('file.txt');
Posted by: Guest on January-07-2021
0

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);
Posted by: Guest on October-21-2020

Code answers related to "laravel download file from storage"

Browse Popular Code Answers by Language