Laravel Tutorials

Discover File Downloads in Laravel with Storage::download

Published
Discover File Downloads in Laravel with Storage::download image

Laravel's Storage::download simplifies secure file serving by providing a clean API for handling downloads while managing file storage abstraction.

<?php
 
namespace App\Http\Controllers;
 
use Illuminate\Support\Facades\Storage;
 
class FileController extends Controller
{
public function download($filename)
{
return Storage::download(
"documents/{$filename}",
"custom-{$filename}",
['Content-Type' => 'application/pdf']
);
}
}

Here is an example of using the Storage::download() in a sample controller:

<?php
 
namespace App\Http\Controllers;
 
use App\Models\Document;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
 
class DocumentController extends Controller
{
public function download(Request $request, Document $document)
{
if (!$request->user()->canDownload($document)) {
abort(403);
}
 
if (!Storage::exists($document->path)) {
abort(404, 'File not found');
}
 
$document->increment('download_count');
 
return Storage::download(
$document->path,
$document->original_name,
[
'Content-Type' => $document->mime_type,
'Content-Disposition' => 'attachment',
'Cache-Control' => 'no-cache, must-revalidate'
]
);
}
}

All in all, Storage::download provides a secure, efficient way to serve files while abstracting storage provider details.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article