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

1.0.0 2024-06-16 09:56 UTC

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 local driver in laravel

Packagist Version Packagist Downloads

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!