diaeai/flysystem-file-response

dev-main 2023-06-15 00:27 UTC

This package is auto-updated.

Last update: 2025-06-21 04:11:53 UTC


README

composer require diaeai/flysystem-file-response

Example

<?php
// routes/web.php
Route::get('video.mp4', function() {
    return Storage::disk('s3')->file('path/video.mp4');
});