tapp / filament-country-code-field
Filament country code field.
Fund package maintenance!
TappNetwork
Installs: 2 086
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 5
Open Issues: 1
Requires
- php: ^8.1
- filament/filament: ^3.0-stable
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- pestphp/pest-plugin-livewire: ^2.1
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
This package is auto-updated.
Last update: 2025-03-23 23:40:27 UTC
README
A country code select form field, table column, and table filter for Laravel Filament.
Installation
composer require tapp/filament-country-code-field
Usage
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
Table Column
use Tapp\FilamentCountryCodeField\Tables\Columns\CountryCodeColumn; public static function table(Table $table): Table { return $table ->columns([ //... CountryCodeColumn::make('country_code'), ]) // ... }
Table Filter
use Tapp\FilamentCountryCodeField\Tables\Filters\CountryCodeFilter; public static function table(Table $table): Table { return $table //... ->filters([ CountryCodeFilter::make('country_code'), // ... ]) }