79610758

Date: 2025-05-07 14:24:39
Score: 1
Natty:
Report link
use Illuminate\Support\Facades\Response as Download;

public function download_config(Config $config)
    {
//
        $headers = [
            'Content-Type'        => 'Content-Type: application/zip',
            'Content-Disposition' => 'attachment; filename="'. $config->name .'"',
        ];
//
        return Download::make(Storage::disk('s3')->get($config->path), Response::HTTP_OK, $headers);
    }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: salmanali