PHPackages                             halimtuhu/array-images - 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. halimtuhu/array-images

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

halimtuhu/array-images
======================

A Laravel Nova field for distribute your images as array of object.

1.1(7y ago)1441.2k↑35%16[2 issues](https://github.com/halimtuhu/array-images/issues)[1 PRs](https://github.com/halimtuhu/array-images/pulls)MITVuePHP &gt;=7.1.0

Since Jan 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/halimtuhu/array-images)[ Packagist](https://packagist.org/packages/halimtuhu/array-images)[ RSS](/packages/halimtuhu-array-images/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Nova Field - Array Images
=================================

[](#laravel-nova-field---array-images)

A laravel nova field that will let you save your uploaded images path to your database in array format.

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

[](#installation)

```
composer require halimtuhu/array-images

```

Usage
=====

[](#usage)

Create array images just call `Halimtuhu\ArrayImages\ArrayImages` class and use `make` static method to create a field.

```
...
use Halimtuhu\ArrayImages\ArrayImages;
...
public function fields(Request $request)
    {
        return [
            ...
            ArrayImages::make('Images', 'images'),
            ...
        ];
    }
...

```

That will create a field with name `Images`. Stored data will look like this.

```
[{
    "url": "http://laranov.halimtuhu.test/storage/wB04AbprHGxHw4I3sizXmuw9L4LBcG0wv0QEacAo.jpeg",
    "name": "wB04AbprHGxHw4I3sizXmuw9L4LBcG0wv0QEacAo.jpeg"
}, {
    "url": "http://laranov.halimtuhu.test/storage/eOuxUCjHGNokkHdOXYB7gGObxCvf7m30ridFpBpy.jpeg",
    "name": "eOuxUCjHGNokkHdOXYB7gGObxCvf7m30ridFpBpy.jpeg"
}, {
    "url": "http://laranov.halimtuhu.test/storage/nLkZp4vfpATEp56NStJfeAtKoHvmN2hapfxoNrEN.jpeg",
    "name": "nLkZp4vfpATEp56NStJfeAtKoHvmN2hapfxoNrEN.jpeg"
}]

```

Available Methods
=================

[](#available-methods)

### Disk

[](#disk)

Specify disk target for uploaded images.

```
ArrayImages::make('Images', 'images')
    ->disk('public'),

```

If not specified then the default disk will be used.

### Path

[](#path)

Specify target path for uploaded images.

```
ArrayImages::make('Images', 'images)
    ->disk('public')
    ->path('images'),

```

If not specified then default path on selected disk will be used.

Notes
=====

[](#notes)

- make sure you have specified correct `APP_URL` on your application
- make sure you have specified default `FILESYSTEM_DRIVER` on your application

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity40

Moderate usage in the ecosystem

Community14

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90% 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

2683d ago

### Community

Maintainers

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

---

Top Contributors

[![halimtuhu](https://avatars.githubusercontent.com/u/26518224?v=4)](https://github.com/halimtuhu "halimtuhu (9 commits)")[![AlexanderWright](https://avatars.githubusercontent.com/u/2227317?v=4)](https://github.com/AlexanderWright "AlexanderWright (1 commits)")

---

Tags

laravelarrayimagesnova

### Embed Badge

![Health badge](/badges/halimtuhu-array-images/health.svg)

```
[![Health](https://phpackages.com/badges/halimtuhu-array-images/health.svg)](https://phpackages.com/packages/halimtuhu-array-images)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[armincms/json

A Laravel Nova field.

25149.4k3](/packages/armincms-json)[genealabs/laravel-overridable-model

Provide a uniform method of allowing models to be overridden in Laravel.

92398.0k2](/packages/genealabs-laravel-overridable-model)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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