laravel:filesystem-uploads

Installation
SKILL.md

Filesystem Uploads and URLs

Use the Storage facade consistently; abstract away the backend (local, S3, etc.).

Commands

$path = Storage::disk('public')->putFile('avatars', $request->file('avatar'));

// Temporary URLs (S3, etc.)
$url = Storage::disk('s3')->temporaryUrl($path, now()->addMinutes(10));

// Streams
return Storage::disk('backups')->download('db.sql.gz');

Patterns

Installs
75
GitHub Stars
139
First Seen
Jan 21, 2026
laravel:filesystem-uploads — jpcaparas/superpowers-laravel