siam401/fileupload

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

A Laravel package for file uploads.

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

This package is auto-updated.

Last update: 2025-04-30 08:27:02 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');