matfire / laravel-local-temp-urls
A Laravel 11 compatible way to create a temporary url for files stored using the 'local' driver
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/matfire/laravel-local-temp-urls
Requires
- illuminate/support: ^11.0
This package is auto-updated.
Last update: 2025-12-16 13:28:39 UTC
README
a package to allow the creation of a temporary url using the
localdriver in laravel
Features
Adds a temporaryUrl() method to the local disk driver in Laravel that works like the one implemente in the s3 driver, allowing you to generate a temporary signed url to a non public resource
Usage
In a blade template, you can now call
{{ Storage::temporaryUrl($filePath, now()) }}
even for files stored in 'local' driver
Installation
composer require matfire/laravel-local-temp-urls
And you should be good to go!