ryanito/nova-country-flag

A Laravel Nova field.

Installs: 10 061

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 0

Language:Vue

v1.0.1 2022-12-21 15:04 UTC

This package is auto-updated.

Last update: 2025-03-21 20:39:55 UTC


README

A Laravel Nova field for displaying country flags using Flagcdn.com.

Latest Version on Packagist Total Downloads

Screenshot of index view

Screenshot of detail view

Installation

Install the package into a Laravel app that uses Nova with Composer:

composer require ryanito/nova-country-flag

Usage

Add the field to your resource in the fields method:

use Ryanito\CountryFlag\CountryFlag;

CountryFlag::make('Country')
->withCode($this->country_code)
->withName($this->country_name),