ryanito / nova-country-flag
A Laravel Nova field.
Package info
github.com/ryanito/nova-country-flag
Language:Vue
pkg:composer/ryanito/nova-country-flag
v1.0.1
2022-12-21 15:04 UTC
Requires
- php: ^7.3|^8.0
README
A Laravel Nova field for displaying country flags using Flagcdn.com.
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),

