“Laravel Download Arquivo de S3” Respostas de código

arquivo de download do Laravel S3

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

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

Laravel Download Arquivo 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

Baixe o arquivo 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

Respostas semelhantes a “Laravel Download Arquivo de S3”

Perguntas semelhantes a “Laravel Download Arquivo de S3”

Mais respostas relacionadas para “Laravel Download Arquivo de S3” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código