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

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article
Collections chunkBy() and Storage Path Hardening in Laravel 13.30 image

Collections chunkBy() and Storage Path Hardening in Laravel 13.30

Read article
Forte: Parse and Rewrite Laravel Blade Templates image

Forte: Parse and Rewrite Laravel Blade Templates

Read article