PHPackages                             juniora/nova-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. juniora/nova-filepond

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

juniora/nova-filepond
=====================

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

v1.1.1(1y ago)1942↓66.7%MITPHPPHP &gt;=8.1

Since Apr 14Pushed 1y agoCompare

[ Source](https://github.com/JunioraTeam/nova-filepond)[ Packagist](https://packagist.org/packages/juniora/nova-filepond)[ GitHub Sponsors](https://github.com/milewski)[ RSS](/packages/juniora-nova-filepond/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)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/main/LICENSE)

  ![Laravel Nova Filepond in action](https://raw.githubusercontent.com/dcasia/nova-filepond/main/screenshots/light.png)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 juniora/nova-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 DigitalCreative\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 DigitalCreative\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!

### Other Packages You Might Like

[](#other-packages-you-might-like)

- [Nova Dashboard](https://github.com/dcasia/nova-dashboard) - The missing dashboard for Laravel Nova!
- [Nova Welcome Card](https://github.com/dcasia/nova-welcome-card) - A configurable version of the `Help card` that comes with Nova.
- [Icon Action Toolbar](https://github.com/dcasia/icon-action-toolbar) - Replaces the default boring action menu with an inline row of icon-based actions.
- [Expandable Table Row](https://github.com/dcasia/expandable-table-row) - Provides an easy way to append extra data to each row of your resource tables.
- [Collapsible Resource Manager](https://github.com/dcasia/collapsible-resource-manager) - Provides an easy way to order and group your resources on the sidebar.
- [Resource Navigation Tab](https://github.com/dcasia/resource-navigation-tab) - Organize your resource fields into tabs.
- [Resource Navigation Link](https://github.com/dcasia/resource-navigation-link) - Create links to internal or external resources.
- [Nova Mega Filter](https://github.com/dcasia/nova-mega-filter) - Display all your filters in a card instead of a tiny dropdown!
- [Nova Pill Filter](https://github.com/dcasia/nova-pill-filter) - A Laravel Nova filter that renders into clickable pills.
- [Nova Slider Filter](https://github.com/dcasia/nova-slider-filter) - A Laravel Nova filter for picking range between a min/max value.
- [Nova Range Input Filter](https://github.com/dcasia/nova-range-input-filter) - A Laravel Nova range input filter.
- [Nova FilePond](https://github.com/dcasia/nova-filepond) - A Nova field for uploading File, Image and Video using Filepond.
- [Custom Relationship Field](https://github.com/dcasia/custom-relationship-field) - Emulate HasMany relationship without having a real relationship set between resources.
- [Column Toggler](https://github.com/dcasia/column-toggler) - A Laravel Nova package that allows you to hide/show columns in the index view.
- [Batch Edit Toolbar](https://github.com/dcasia/batch-edit-toolbar) - Allows you to update a single column of a resource all at once directly from the index page.

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 72% of packages

Maintenance47

Moderate activity, may be stable

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.6% 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 ~0 days

Total

2

Last Release

399d ago

### Community

Maintainers

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

---

Top Contributors

[![milewski](https://avatars.githubusercontent.com/u/2874967?v=4)](https://github.com/milewski "milewski (39 commits)")[![nimah79](https://avatars.githubusercontent.com/u/20343056?v=4)](https://github.com/nimah79 "nimah79 (2 commits)")[![aem-coding](https://avatars.githubusercontent.com/u/74114983?v=4)](https://github.com/aem-coding "aem-coding (1 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

laravelvideofileuploadfieldnovanova4

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/juniora-nova-filepond/health.svg)](https://phpackages.com/packages/juniora-nova-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)[bbs-lab/nova-file-manager

A handy file manager tool for Laravel Nova

1578.0k](/packages/bbs-lab-nova-file-manager)[ahmedkandel/nova-s3-multipart-upload

A Laravel Nova s3 multipart upload tool.

2547.2k](/packages/ahmedkandel-nova-s3-multipart-upload)[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)
