matfire / laravel-local-temp-urls
A Laravel 11 compatible way to create a temporary url for files stored using the 'local' driver
1.0.0
2024-06-16 09:56 UTC
Requires
- illuminate/support: ^11.0
This package is auto-updated.
Last update: 2025-06-16 12:18:12 UTC
README
a package to allow the creation of a temporary url using the
local
driver 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!