Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 29, 2021 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/c72740d6141c27a0923bb701c88f588b to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/c72740d6141c27a0923bb701c88f588b to your computer and use it in GitHub Desktop.
<?php
use App\Models\Attachment;
use Illuminate\Support\Facades\{
Route, Storage
};
Route::get("/temporary-s3-url", function () {
$attachment = Attachment::first();
$url = Storage::disk("s3")->temporaryUrl($attachment->s3_key, now()->addMinutes(5));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment