siam401/fileupload

There is no license information available for the latest version (v0.0.3) of this package.

A Laravel package for file uploads.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/siam401/fileupload

v0.0.3 2024-10-23 05:44 UTC

This package is auto-updated.

Last update: 2025-09-30 09:32:46 UTC


README

A simple package to help you easily upload files to your laravel project.

Installation

You can install the package via Composer:

composer require siam401/fileupload

#Code example

use Siam401\FileUpload\FileUpload;

return FileUpload::upload('file'); // single or multiple file upload
return FileUpload::getUrl('file-path');
return FileUpload::render('file-path');
return FileUpload::remove('file-path');
return FileUpload::removeDirectory('file-path');
return FileUpload::storagePath('file-path');
return FileUpload::exists('file-path');
return FileUpload::getUploadTime('file-path');