PHPackages                             laravelwebdev/filepond - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. laravelwebdev/filepond

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

laravelwebdev/filepond
======================

A Laravel Nova field.

1.0.3(1y ago)01.7kMITPHPPHP ^8.1CI failing

Since Jan 16Pushed 1y ago1 watchersCompare

[ Source](https://github.com/laravelwebdev/filepond)[ Packagist](https://packagist.org/packages/laravelwebdev/filepond)[ RSS](/packages/laravelwebdev-filepond/feed)WikiDiscussions main Synced today

READMEChangelog (4)Dependencies (3)Versions (5)Used By (0)

Nova Filepond (Nova v5)
=======================

[](#nova-filepond-nova-v5)

A Nova field for uploading File, Image and Video using [Filepond](https://github.com/pqina/filepond). [![Filepond](images/filepond.png)](images/filepond.png)

Installation
============

[](#installation)

You can install the package via composer:

```
composer require laravelwebdev/filepond
```

Features
========

[](#features)

- Single/Multiple files upload
- Sortable files
- Preview images, videos and audio
- Enable / Disable preview
- Extends the original Laravel Nova File field giving you access to all the methods/functionality of the default file upload.
- Drag and drop files
- Paste files directly from the clipboard
- Store custom attributes (original file name, size, etc)
- Prunable files (Auto delete files when the model is deleted)
- Dark mode support

Usage
=====

[](#usage)

The field extends the original Laravel Nova File field, so you can use all the methods available in the original field.

Basic usage:

```
use Laravelwebdev\Filepond\Filepond;

class Post extends Resource
{
    public function fields(NovaRequest $request): array
    {
        return [
            Filepond::make('Images', 'images')
                ->rules('required')
                ->prunable()
                ->disablePreview()
                ->multiple()
                ->limit(4),
        ];
    }
}
```

When uploading multiple files you will need to cast the attribute to an array in your model class

```
class Post extends Model {

    protected $casts = [
        'images' => 'array'
    ];

}
```

You can also store original file name / size by using `storeOriginalName` and `storeOriginalSize` methods.

```
use Laravelwebdev\Filepond\Filepond;

class Post extends Resource
{
    public function fields(NovaRequest $request): array
    {
        return [
            Filepond::make('Images', 'images')
                ->storeOriginalName('name')
                ->storeSize('size')
                ->multiple(),

            // or you can manually decide how to store the data
            // Note: the store method will be called for each file uploaded and the output will be stored into a single json column
            Filepond::make('Images', 'images')
                ->multiple()
                ->store(function (NovaRequest $request, Model $model, string $attribute): array {
                    return [
                        $attribute => $request->images->store('/', 's3'),
                        'name' => $request->images->getClientOriginalName(),
                        'size' => $request->images->getSize(),
                        'metadata' => '...'
                    ];
                })
        ];
    }
}
```

> Note when using `storeOriginalName` and `storeSize` methods, you will need to add the columns to your database table if you are in "single" file mode.

⭐️ Show Your Support
--------------------

[](#️-show-your-support)

Please give a ⭐️ if this project helped you!

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://raw.githubusercontent.com/dcasia/nova-filepond/master/LICENSE) for more information.

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance41

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

Every ~13 days

Total

4

Last Release

491d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ccf3a53812cbcccba4598559011f30eda5bc60876b1267ba40c47d25ce00ca3c?d=identicon)[laravelwebdev](/maintainers/laravelwebdev)

---

Top Contributors

[![laravelwebdev](https://avatars.githubusercontent.com/u/83898440?v=4)](https://github.com/laravelwebdev "laravelwebdev (7 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/laravelwebdev-filepond/health.svg)

```
[![Health](https://phpackages.com/badges/laravelwebdev-filepond/health.svg)](https://phpackages.com/packages/laravelwebdev-filepond)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[vinkius-labs/laravel-page-speed

Laravel Page Speed

2.5k12.5k1](/packages/vinkius-labs-laravel-page-speed)[emargareten/inertia-modal

Inertia Modal is a Laravel package that lets you implement backend-driven modal dialogs for Inertia apps.

90142.9k](/packages/emargareten-inertia-modal)[wearepixel/laravel-cart

A cart implementation for Laravel

1374.8k](/packages/wearepixel-laravel-cart)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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