“Laravel -Downloaddatei von S3” Code-Antworten

Laravel S3 Download -Datei

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

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

Laravel -Downloaddatei von 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

Download Datei Laravel S3 herunterladen

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

Ähnliche Antworten wie “Laravel -Downloaddatei von S3”

Fragen ähnlich wie “Laravel -Downloaddatei von S3”

Weitere verwandte Antworten zu “Laravel -Downloaddatei von S3” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen