“Laravel Download File с S3” Ответ

Laravel S3 Download File

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

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

Laravel Download File с 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

Скачать файл 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

Ответы похожие на “Laravel Download File с S3”

Вопросы похожие на “Laravel Download File с S3”

Больше похожих ответов на “Laravel Download File с S3” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования