PHPackages                             remocodebe/laravelnova-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. [File &amp; Storage](/categories/file-storage)
4. /
5. remocodebe/laravelnova-filepond

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

remocodebe/laravelnova-filepond
===============================

A Nova field for uploading File, Image and Video using filepond.

0.2.14(4y ago)011MITPHPPHP &gt;=7.1.0

Since Oct 2Pushed 4y agoCompare

[ Source](https://github.com/remocodebe/nova-filepond)[ Packagist](https://packagist.org/packages/remocodebe/laravelnova-filepond)[ RSS](/packages/remocodebe-laravelnova-filepond/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)DependenciesVersions (17)Used By (0)

Nova Filepond
=============

[](#nova-filepond)

[![Latest Version on Packagist](https://camo.githubusercontent.com/347e2ce6adaa693d9a24d0e12246f2f1f1f77eb63aba95e8eda7713e4a031026/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6469676974616c2d63726561746976652f6e6f76612d66696c65706f6e64)](https://packagist.org/packages/digital-creative/nova-filepond)[![Total Downloads](https://camo.githubusercontent.com/e64d864309633208b4f6e5c669b7b5e6693f8f9bc66351b3828a7417d454fda4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6469676974616c2d63726561746976652f6e6f76612d66696c65706f6e64)](https://packagist.org/packages/digital-creative/nova-filepond)[![License](https://camo.githubusercontent.com/6c18a5c50ac567c818b4254efca77a601760acf063b28d66e9a86b42ef5f680d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6469676974616c2d63726561746976652f6e6f76612d66696c65706f6e64)](https://github.com/dcasia/nova-filepond/blob/master/LICENSE)

[![Laravel Nova Filepond in action](https://raw.githubusercontent.com/dcasia/nova-filepond/master/screenshots/demo-1.gif)](https://raw.githubusercontent.com/dcasia/nova-filepond/master/screenshots/demo-1.gif)

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

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

[](#installation)

You can install the package via composer:

```
composer require remocodebe/laravelnova-filepond

```

Usage
=====

[](#usage)

```
use DigitalCreative\Filepond\Filepond;

class Post extends Resource
{
    public function fields(Request $request)
    {
        return [
            // ...
            Filepond::make('Audio Example')
                    ->multiple() // the default is single upload, use this method to allow multiple uploads
                    ->limit(4) // limit the number of attached files
                    ->rules('required') // every validation rule works!!
                    ->mimesTypes([ 'audio/mp3', 'audio/ogg', 'audio/vnd.wav' ]) // if opmited, accepts anything
                    ->disk('public', '/optional/location') // the second argument instruct the file to be stored into a subfolder
                    ->storeAs(function (Illuminate\Http\File $file) { // this is optional, use in case you need generate custom file names
                        return Str::random(20) . '.' . $file->getExtension();
                    })

        ];

    }
}
```

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

```
class Post extends Model {

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'images' => 'array'
    ];

}
```

Adding an Image Editor
======================

[](#adding-an-image-editor)

To enable image editing for your users you have to add the [Doka Image Editor](https://pqina.nl/doka/?ref=nova-filepond).

1. Get a license for the editor and download the Doka library files.
2. Publish the configuration file:

```
php artisan vendor:publish --provider="DigitalCreative\Filepond\FilepondServiceProvider" --tag="config"
```

3. Set `doka.enabled` to `true` and update the path to the `doka.min.js` and `doka.min.css` library files.

```
'doka' => [
    'enabled' => true,
    'js_path' => public_path('doka.min.js'), // this assumes you places theses files within your public directory
    'css_path' => public_path('doka.min.css'),
]
```

4. Two options are available to enable/disable Doka on a given field, `->withDoka($options)` accepts a list of options, you can find the documentation of all possible options here:

```
public function fields(Request $request)
{
    return [
        //...

        Filepond::make('Avatar')->withDoka([
            'cropShowSize' => true
        ]),

        /**
         * This will disable Doka for this specific field
         */
        Filepond::make('Simple Image')->withoutDoka(),

    ];
}
```

If you've setup everything correctly you should see the edit icon on top of FilePond images.

[![Laravel Nova Filepond with Doka in action](https://raw.githubusercontent.com/dcasia/nova-filepond/master/screenshots/demo-2.png)](https://raw.githubusercontent.com/dcasia/nova-filepond/master/screenshots/demo-2.png)

License
-------

[](#license)

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

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 78.1% 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 ~49 days

Recently: every ~178 days

Total

16

Last Release

1680d ago

### Community

Maintainers

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

---

Top Contributors

[![milewski](https://avatars.githubusercontent.com/u/2874967?v=4)](https://github.com/milewski "milewski (25 commits)")[![gentritabazi](https://avatars.githubusercontent.com/u/35135482?v=4)](https://github.com/gentritabazi "gentritabazi (5 commits)")[![littlemiaor](https://avatars.githubusercontent.com/u/2921366?v=4)](https://github.com/littlemiaor "littlemiaor (1 commits)")[![rikschennink](https://avatars.githubusercontent.com/u/1132575?v=4)](https://github.com/rikschennink "rikschennink (1 commits)")

---

Tags

laravelvideofileuploadfieldnovaDoka

### Embed Badge

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

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

###  Alternatives

[digital-creative/nova-filepond

A Nova field for uploading File, Image and Video using filepond.

5568.0k1](/packages/digital-creative-nova-filepond)[oneduo/nova-file-manager

A handy file manager tool for Laravel Nova

157350.3k2](/packages/oneduo-nova-file-manager)[czim/laravel-paperclip

Laravel Eloquent file attachment solution

80802.1k6](/packages/czim-laravel-paperclip)[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)

PHPackages © 2026

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