diaeai/flysystem-file-response

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

This package is auto-updated.

Last update: 2024-04-21 01:38:31 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');
});