“Descargar archivo Laravel S3” Código de respuesta

Descargue datos de S3 y guarde al disco local Laravel

 $s3_file = Storage::disk('s3')->get(request()->file);
 $s3 = Storage::disk('public');
 $s3->put("./file_name.tif", $s3_file);
Happy Hamerkop

archivo de descarga de Laravel S3

return Storage::download('file.jpg');

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

archivo de descarga de Laravel de 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);
Modern Magpie

Descargar archivo Laravel S3

$event_data = $this->ticket->where('user_id', $user_id)->first();
        
$data  = $event_data->pdf;

$get_ticket = 'tickets/'. $data;
$file_name  = "YOUR_DESIRED_NAME.pdf";

$headers = [
  'Content-Type'        => 'application/pdf',            
  'Content-Disposition' => 'attachment; filename="'. $file_name .'"',
];

return \Response::make(Storage::disk('s3')->get($get_ticket), 200, $headers);
Nice Nightingale

Descargar archivo Laravel S3

public function downloadAsset($id)
    {
        $asset = Asset::find($id);
        $assetPath = Storage::disk('s3')->url($asset->filename);

        header("Cache-Control: public");
        header("Content-Description: File Transfer");
        header("Content-Disposition: attachment; filename=" . basename($assetPath));
        header("Content-Type: " . $asset->mime);

        return readfile($assetPath);
    }
Nice Nightingale

Respuestas similares a “Descargar archivo Laravel S3”

Preguntas similares a “Descargar archivo Laravel S3”

Más respuestas relacionadas con “Descargar archivo Laravel S3” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código