PHPackages                             kavela/enhanced-image-uploader - 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. kavela/enhanced-image-uploader

AbandonedArchivedLibrary

kavela/enhanced-image-uploader
==============================

Repeatable image field for Laravel Nova applications

1.1.0(5y ago)150MITPHPPHP &gt;=7.2

Since Sep 23Pushed 5y ago1 watchersCompare

[ Source](https://github.com/kavela/enhanced-image-uploader)[ Packagist](https://packagist.org/packages/kavela/enhanced-image-uploader)[ Docs](https://github.com/kavela/enhanced-image-uploader)[ RSS](/packages/kavela-enhanced-image-uploader/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (7)Used By (0)

Repeatable image field for Laravel Nova applications
====================================================

[](#repeatable-image-field-for-laravel-nova-applications)

This package contains a Nova field to add images to resources.

Requirements
------------

[](#requirements)

This Nova field requires PHP 7.2 or higher.

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

[](#installation)

You can install this package into a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require kavela/enhanced-image-uploader
```

```
php artisan enhanced-image-uploader:install
```

```
php artisan migrate
```

Usage
-----

[](#usage)

To make an Eloquent model imageable follow next steps:

Update `config/enhanced-image-uploader.php` configuration file.

Next add the `Kavela\EnhancedImageUploader\Traits\HasImages` trait to it:

```
class Project extends Model
{
    use Kavela\EnhancedImageUploader\Traits\HasImages;

    ...
}
```

Next you can use the `Kavela\EnhancedImageUploader\Images` field in your Nova resource:

```
namespace App\Nova;

use Kavela\EnhancedImageUploader\Images;

class Project extends Resource
{
    // ...

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

            Images::make('Images'),

            // ...
        ];
    }
}
```

All images will be saved in the `enhanced_image_uploader_images` table.

Limiting images
---------------

[](#limiting-images)

You can limit the number of images with `limit()`.

```
Images::make('Images')->limit($maxNumber),
```

Processing method (fit, resize, crop, etc.) of images
-----------------------------------------------------

[](#processing-method-fit-resize-crop-etc-of-images)

```
Images::make('Images')->method('fit'),
```

Constraints (aspectRatio, upsize, etc.) for the images processing method
------------------------------------------------------------------------

[](#constraints-aspectratio-upsize-etc-for-the-images-processing-method)

```
Images::make('Images')->constraints([ 'aspectRatio', 'upsize' ]),
```

Images quality
--------------

[](#images-quality)

```
Images::make('Images')->quality(60),
```

Saved images format
-------------------

[](#saved-images-format)

```
Images::make('Images')->format('jpg'),
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [George Kavelashvili](https://github.com/kavela)

License
-------

[](#license)

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

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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 ~14 days

Total

6

Last Release

1980d ago

PHP version history (3 changes)1.0.0PHP &gt;=7.4.5

1.0.2PHP ^7.2

1.0.3PHP &gt;=7.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7105899?v=4)[Giorgi Kavelashvili](/maintainers/kavela)[@kavela](https://github.com/kavela)

---

Top Contributors

[![giokavela](https://avatars.githubusercontent.com/u/199424787?v=4)](https://github.com/giokavela "giokavela (9 commits)")

---

Tags

laravelnovanova-fieldlaravelnova

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kavela-enhanced-image-uploader/health.svg)

```
[![Health](https://phpackages.com/badges/kavela-enhanced-image-uploader/health.svg)](https://phpackages.com/packages/kavela-enhanced-image-uploader)
```

###  Alternatives

[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2861.8M9](/packages/outl1ne-nova-sortable)[stepanenko3/nova-command-runner

Laravel Nova tool for running Artisan and bash(shell) commands.

36983.0k](/packages/stepanenko3-nova-command-runner)[mostafaznv/nova-ckeditor

CkEditor for Laravel Nova

57327.2k1](/packages/mostafaznv-nova-ckeditor)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[norman-huth/nova-assets-changer

Change Nova resources

2570.1k](/packages/norman-huth-nova-assets-changer)

PHPackages © 2026

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