stidges/laravel-country-flags

A Laravel wrapper for the stidges/country-flags package
153,024 28
Install
composer require stidges/laravel-country-flags
Latest Version:v3.0.1
PHP:^8.2
License:MIT
Last Updated:Mar 5, 2025
Links: GitHub  ·  Packagist
Maintainer: stidges

Laravel Country Flags

Latest Version on Packagist Software License Build Status Total Downloads

A Laravel wrapper for the stidges/country-flags package.

Installation

You can install the package via Composer:

$ composer require stidges/laravel-country-flags

The Laravel facade and service provider are registered through auto-discovery, so you can start using it out of the box!

Usage

This package publishes a Laravel facade for easier usage:

use CountryFlag;

echo CountryFlag::get('NL'); // "🇳🇱"

It also comes with a helper function that you can use!

echo country_flag('NL'); // "🇳🇱"

Aliasing

If you would like to make country codes available under a custom aliases, you can update the configuration file. First you should publish it:

$ php artisan vendor:publish --provider="Stidges\LaravelCountryFlags\CountryFlagsServiceProvider"

This will make the configuration file available under config/country-flags.php. You can update the 'aliases' section to add your custom aliases:

return [
    'aliases' => [
        'AA' => 'NL',
    ],
];

And it will be available for you to access:

echo country_flag('AA'); // "🇳🇱"

Contributing

Please see CONTRIBUTING for details.

Security

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

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

matriphe/bendera

Laravel package to convert country code (ISO 3166-1 alpha-2) to the correspondin...

1,024 0
tariq86/country-list

List of all countries with names and ISO 3166-1 codes in all languages and data...

15,527 7
unicodeveloper/laravel-emoji

A Laravel 5 Package for Using & Working With Emojis

25,225 208
dougsisk/laravel-country-state

Country & state helper for Laravel.

2,094,467 168