PHPackages                             stechstudio/laravel-upload-server - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. stechstudio/laravel-upload-server

AbandonedArchivedLibrary[File &amp; Storage](/categories/file-storage)

stechstudio/laravel-upload-server
=================================

A robust Laravel backend for handling FilePond uploads with large file chunking support

1.0(5y ago)31.4k1MITPHPPHP ^7.4|^8.0

Since Jan 27Pushed 5y ago2 watchersCompare

[ Source](https://github.com/stechstudio/laravel-upload-server)[ Packagist](https://packagist.org/packages/stechstudio/laravel-upload-server)[ Docs](https://github.com/stechstudio/laravel-upload-server)[ RSS](/packages/stechstudio-laravel-upload-server/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (3)Versions (2)Used By (0)

Laravel Upload Server
=====================

[](#laravel-upload-server)

[![Latest Version on Packagist](https://camo.githubusercontent.com/23f4d7373da1de1a21ccc8484465d8017d257d59e5c24c9d222e8c434dfc7701/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f737465636873747564696f2f6c61726176656c2d75706c6f61642d7365727665722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/stechstudio/laravel-upload-server)[![GitHub Workflow Status](https://camo.githubusercontent.com/811c66e94a1d6c87b5ba3a2abdcaa23a76dd79a864769635698619c8ab5b12f9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f737465636873747564696f2f6c61726176656c2d75706c6f61642d7365727665722f4c61726176656c3f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/811c66e94a1d6c87b5ba3a2abdcaa23a76dd79a864769635698619c8ab5b12f9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f737465636873747564696f2f6c61726176656c2d75706c6f61642d7365727665722f4c61726176656c3f7374796c653d666c61742d737175617265)

A robust backend for handling file uploads, batteries included. Supports large chunked uploads. It is currently built for [FilePond](https://pqina.nl/filepond/) with planned support for [Uppy](https://uppy.io/).

Installation
------------

[](#installation)

You know the drill:

```
composer require stechstudio/laravel-upload-server
```

Quickstart
----------

[](#quickstart)

### 1. Add the route

[](#1-add-the-route)

In your routes file add:

```
UploadServer::route();
```

Note that this Route can be put inside a `Route::group()`, and you can also chain additional route details.

```
Route::prefix('app')->group(function () {
    UploadServer::route()->withoutMiddleware('csrf');
});
```

You will now have a route setup named `upload-server` using your default backend. Point your client-side upload integration to this endpoint.

Any file uploads sent to this endpoint will be handled for you and saved at the configured path.

### 2. Retrieve the saved files

[](#2-retrieve-the-saved-files)

Now when your form is submitted, take the UUIDs and retrieve the saved files:

```
public function handleFormSubmission(Request $request)
{
    // 'attachments' is the name of the client-side uploader
    $files = UploadServer::retrieve($request->input('attachments'));
}
```

You will receive back an array of `File` objects if there were multiple files submitted, otherwise you will have a single `File` instance.

### 3. Wrap up

[](#3-wrap-up)

You can now simply move the uploaded files to a permanent location, store details in a database, etc.

```
$files = UploadServer::retrieve($request->input('attachments'));

foreach($files AS $file) {
    $file->store('attachments', 's3');
}
```

That's it, seriously.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1928d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/315be5f111b5501a41b99a0205c9c85915335391168a0ed10316546a1a38bbd8?d=identicon)[jszobody](/maintainers/jszobody)

---

Top Contributors

[![jszobody](https://avatars.githubusercontent.com/u/203749?v=4)](https://github.com/jszobody "jszobody (42 commits)")

---

Tags

laraveluploadfilepondstechstudio

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/stechstudio-laravel-upload-server/health.svg)

```
[![Health](https://phpackages.com/badges/stechstudio-laravel-upload-server/health.svg)](https://phpackages.com/packages/stechstudio-laravel-upload-server)
```

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M73](/packages/unisharp-laravel-filemanager)[sopamo/laravel-filepond

Laravel backend module for filepond uploads

215272.2k3](/packages/sopamo-laravel-filepond)[oneofftech/laravel-tus-upload

Upload files to your Laravel application with the tus.io resumable upload protocol.

517.3k](/packages/oneofftech-laravel-tus-upload)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
