PHPackages                             tapp/filament-country-code-field - 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. tapp/filament-country-code-field

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

tapp/filament-country-code-field
================================

Filament country code field.

v2.1.1(1mo ago)2122.1k↓65.5%8[1 issues](https://github.com/TappNetwork/filament-country-code-field/issues)1MITPHPPHP ^8.3CI passing

Since Jun 26Pushed 1w ago4 watchersCompare

[ Source](https://github.com/TappNetwork/filament-country-code-field)[ Packagist](https://packagist.org/packages/tapp/filament-country-code-field)[ Docs](https://github.com/TappNetwork/filament-country-code-field)[ GitHub Sponsors](https://github.com/TappNetwork)[ RSS](/packages/tapp-filament-country-code-field/feed)WikiDiscussions 2.x Synced 2d ago

READMEChangelog (10)Dependencies (22)Versions (18)Used By (1)

Filament Country Code Field
===========================

[](#filament-country-code-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1e3ca68102640e70e61dfb7bf1d8068c0d4d622bd754b1fb9afec68447ce3371/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746170702f66696c616d656e742d636f756e7472792d636f64652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-country-code-field)[![GitHub Tests Action Status](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/run-tests.yml/badge.svg)](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/run-tests.yml/badge.svg)[![Code Style Action Status](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/pint.yml/badge.svg)](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/pint.yml/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/35d7b77d81fccdb76478169f7c7cf84f8ca1b2b0058d4220d6064405d6bd9818/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746170702f66696c616d656e742d636f756e7472792d636f64652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-country-code-field)

A country code select form field, table column, and table filter for Laravel Filament.

Version Compatibility
---------------------

[](#version-compatibility)

FilamentFilament Country Code FieldDocumentation4.x/5.x2.xCurrent3.x1.x[Check the docs](https://github.com/TappNetwork/filament-country-code-field/tree/1.x)Installation
------------

[](#installation)

You can install the package via Composer:

```
composer require tapp/filament-country-code-field:"^2.0"
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-country-code-field-config"
```

Usage
-----

[](#usage)

### Form Field

[](#form-field)

Add to your Filament resource:

```
use Tapp\FilamentCountryCodeField\Forms\Components\CountryCodeSelect;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            // ...
            CountryCodeSelect::make('country_code'),
            // ...
        ]);
}
```

#### Appareance

[](#appareance)

[![Filament Country Code Field](https://raw.githubusercontent.com/TappNetwork/filament-country-code-field/2.x/docs/country_code_select.png)](https://raw.githubusercontent.com/TappNetwork/filament-country-code-field/2.x/docs/country_code_select.png)

[![Filament Country Code Table Column and Filter](https://raw.githubusercontent.com/TappNetwork/filament-country-code-field/2.x/docs/country_code_column_and_filter.png)](https://raw.githubusercontent.com/TappNetwork/filament-country-code-field/2.x/docs/country_code_column_and_filter.png)

### Table Column

[](#table-column)

```
use Tapp\FilamentCountryCodeField\Tables\Columns\CountryCodeColumn;

public static function table(Table $table): Table
{
    return $table
        ->columns([
            //...
            CountryCodeColumn::make('country_code'),
        ])
        // ...
}
```

### Table Filter

[](#table-filter)

```
use Tapp\FilamentCountryCodeField\Tables\Filters\CountryCodeSelectFilter;

public static function table(Table $table): Table
{
    return $table
        //...
        ->filters([
            CountryCodeSelectFilter::make('country_code'),
            // ...
        ])
}
```

###  Health Score

58

—

FairBetter than 98% of packages

Maintenance93

Actively maintained with recent releases

Popularity38

Limited adoption so far

Community25

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~60 days

Recently: every ~38 days

Total

13

Last Release

12d ago

Major Versions

v1.0.2 → v2.0.02025-06-20

v1.0.4 → v2.0.12025-07-14

1.x-dev → v2.1.02026-04-26

PHP version history (3 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.2

v2.1.0PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/837400?v=4)[tapp](/maintainers/tapp)[@tapp](https://github.com/tapp)

![](https://avatars.githubusercontent.com/u/7796074?v=4)[Scott Grayson](/maintainers/scottgrayson)[@scottgrayson](https://github.com/scottgrayson)

![](https://avatars.githubusercontent.com/u/413354?v=4)[andreiabohner](/maintainers/andreiabohner)[@andreiabohner](https://github.com/andreiabohner)

![](https://avatars.githubusercontent.com/u/29612767?v=4)[johnwesely](/maintainers/johnwesely)[@johnwesely](https://github.com/johnwesely)

---

Top Contributors

[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (36 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (19 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (12 commits)")[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (11 commits)")[![arturafonsoaa](https://avatars.githubusercontent.com/u/4244601?v=4)](https://github.com/arturafonsoaa "arturafonsoaa (1 commits)")[![sergioraldana](https://avatars.githubusercontent.com/u/60765721?v=4)](https://github.com/sergioraldana "sergioraldana (1 commits)")

---

Tags

laravelfilamenttapp networkcountry code

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tapp-filament-country-code-field/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-filament-country-code-field/health.svg)](https://phpackages.com/packages/tapp-filament-country-code-field)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

30136.4k](/packages/tapp-filament-google-autocomplete-field)[tapp/filament-auditing

Filament Laravel Auditing plugin.

117480.9k2](/packages/tapp-filament-auditing)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12453.6k](/packages/jibaymcs-filament-tour)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

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