PHPackages                             chaseconey/nova-external-image - 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. chaseconey/nova-external-image

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

chaseconey/nova-external-image
==============================

A Laravel Nova field.

1.0.0(2y ago)28454.9k↑17.8%12[3 issues](https://github.com/chaseconey/nova-external-image/issues)MITVuePHP &gt;=7.1.0

Since Aug 29Pushed 2y ago2 watchersCompare

[ Source](https://github.com/chaseconey/nova-external-image)[ Packagist](https://packagist.org/packages/chaseconey/nova-external-image)[ GitHub Sponsors](https://github.com/chaseconey)[ RSS](/packages/chaseconey-nova-external-image/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)DependenciesVersions (9)Used By (0)

Laravel Nova External Image Field
=================================

[](#laravel-nova-external-image-field)

An external image field for Laravel Nova

[![Latest Version on Packagist](https://camo.githubusercontent.com/6a012d82464767663cee4a5cc80962c9af8626f951aa0f0e5ab0f484f51e9d12/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6368617365636f6e65792f6e6f76612d65787465726e616c2d696d6167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chaseconey/nova-external-image)[![Total Downloads](https://camo.githubusercontent.com/d112cec590816f8feae7d997bc61c2e603169c71e089c3e78d9226d9a461819c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6368617365636f6e65792f6e6f76612d65787465726e616c2d696d6167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chaseconey/nova-external-image)

[![Index](https://raw.githubusercontent.com/chaseconey/nova-external-image/master/screenshots/index-ss.png)](https://raw.githubusercontent.com/chaseconey/nova-external-image/master/screenshots/index-ss.png)[![Detail](https://raw.githubusercontent.com/chaseconey/nova-external-image/master/screenshots/detail-ss.png)](https://raw.githubusercontent.com/chaseconey/nova-external-image/master/screenshots/detail-ss.png)

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

[](#installation)

Install the package into a Laravel app that uses [Nova](https://nova.laravel.com) with Composer:

```
composer require chaseconey/nova-external-image
```

Usage
-----

[](#usage)

Add the field to your resource in the `fields` method:

```
use Chaseconey\ExternalImage\ExternalImage;

ExternalImage::make('Image')
```

The field extends the `Laravel\Nova\Fields\Text` field, so all the usual methods are available.

### Options

[](#options)

##### Prefix

[](#prefix)

Prepend the image field with a prefix path. This is useful if you don't store the absolute path of images, but instead point to a cdn.

```
ExternalImage::make('Image')
    ->prefix('https://example.com/'),
```

##### Width

[](#width)

Set the width of the image (in pixels).

```
ExternalImage::make('Image')
    ->width(32),
```

##### Height

[](#height)

Set the height of the image (in pixels).

```
ExternalImage::make('Image')
    ->height(32),
```

##### Radius

[](#radius)

Set the border radius of the image (in pixels).

```
ExternalImage::make('Image')
    ->radius(32),
```

##### Avatar

[](#avatar)

Set the image with avatar-like style (rounded and fixed height + width).

```
ExternalImage::make('Image')
    ->avatar(),
```

### Search Avatar

[](#search-avatar)

If you want the external image to act as an [Avatar](https://nova.laravel.com/docs/2.0/resources/fields.html#avatar-field) in the search box use `ExternalImageAsAvatar` instead of `ExternalImage`

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity48

Moderate usage in the ecosystem

Community17

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 81.8% 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 ~276 days

Recently: every ~396 days

Total

8

Last Release

886d ago

Major Versions

0.3.1 → 1.0.02023-12-14

### Community

Maintainers

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

---

Top Contributors

[![chaseconey](https://avatars.githubusercontent.com/u/1449463?v=4)](https://github.com/chaseconey "chaseconey (18 commits)")[![adrianthedev](https://avatars.githubusercontent.com/u/1334409?v=4)](https://github.com/adrianthedev "adrianthedev (1 commits)")[![ghaskell](https://avatars.githubusercontent.com/u/10897907?v=4)](https://github.com/ghaskell "ghaskell (1 commits)")[![Livijn](https://avatars.githubusercontent.com/u/349311?v=4)](https://github.com/Livijn "Livijn (1 commits)")[![repat](https://avatars.githubusercontent.com/u/516807?v=4)](https://github.com/repat "repat (1 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/chaseconey-nova-external-image/health.svg)

```
[![Health](https://phpackages.com/badges/chaseconey-nova-external-image/health.svg)](https://phpackages.com/packages/chaseconey-nova-external-image)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[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)[yieldstudio/nova-google-autocomplete

A Laravel Nova Google autocomplete field.

12218.4k](/packages/yieldstudio-nova-google-autocomplete)

PHPackages © 2026

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