{"id":22398723,"url":"https://github.com/tappnetwork/filament-country-code-field","last_synced_at":"2026-04-26T20:00:54.652Z","repository":{"id":246027971,"uuid":"816085843","full_name":"TappNetwork/filament-country-code-field","owner":"TappNetwork","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-06T19:51:33.000Z","size":1606,"stargazers_count":20,"open_issues_count":3,"forks_count":8,"subscribers_count":4,"default_branch":"2.x","last_synced_at":"2026-04-14T20:08:13.350Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TappNetwork.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"TappNetwork"}},"created_at":"2024-06-17T02:24:16.000Z","updated_at":"2026-04-06T19:51:36.000Z","dependencies_parsed_at":"2024-07-08T05:31:22.359Z","dependency_job_id":"b9bfeab1-9303-45e7-97ab-00bcb73ad7ce","html_url":"https://github.com/TappNetwork/filament-country-code-field","commit_stats":null,"previous_names":["tappnetwork/filament-country-code-field"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/TappNetwork/filament-country-code-field","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2Ffilament-country-code-field","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2Ffilament-country-code-field/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2Ffilament-country-code-field/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2Ffilament-country-code-field/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TappNetwork","download_url":"https://codeload.github.com/TappNetwork/filament-country-code-field/tar.gz/refs/heads/2.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2Ffilament-country-code-field/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32310804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T19:15:34.056Z","status":"ssl_error","status_checked_at":"2026-04-26T19:15:15.467Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T07:11:55.883Z","updated_at":"2026-04-26T20:00:54.647Z","avatar_url":"https://github.com/TappNetwork.png","language":"PHP","funding_links":["https://github.com/sponsors/TappNetwork"],"categories":[],"sub_categories":[],"readme":"# Filament Country Code Field\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/tapp/filament-country-code-field.svg?style=flat-square)](https://packagist.org/packages/tapp/filament-country-code-field)\n![GitHub Tests Action Status](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/run-tests.yml/badge.svg)\n![Code Style Action Status](https://github.com/TappNetwork/filament-country-code-field/actions/workflows/pint.yml/badge.svg)\n[![Total Downloads](https://img.shields.io/packagist/dt/tapp/filament-country-code-field.svg?style=flat-square)](https://packagist.org/packages/tapp/filament-country-code-field)\n\nA country code select form field, table column, and table filter for Laravel Filament.\n\n## Version Compatibility\n\nFilament | Filament Country Code Field | Documentation\n:--------|:----------------------------|:--------------\n4.x/5.x  | 2.x                         | Current\n3.x      | 1.x                         | [Check the docs](https://github.com/TappNetwork/filament-country-code-field/tree/1.x)\n\n## Installation\n\nYou can install the package via Composer:\n\n```bash\ncomposer require tapp/filament-country-code-field:\"^2.0\"\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"filament-country-code-field-config\"\n```\n\n## Usage\n\n### Form Field\n\nAdd to your Filament resource:\n\n```php\nuse Tapp\\FilamentCountryCodeField\\Forms\\Components\\CountryCodeSelect;\n\npublic static function form(Form $form): Form\n{\n    return $form\n        -\u003eschema([\n            // ...\n            CountryCodeSelect::make('country_code'),\n            // ...\n        ]);\n}\n```\n\n#### Appareance\n\n![Filament Country Code Field](https://raw.githubusercontent.com/TappNetwork/filament-country-code-field/2.x/docs/country_code_select.png)\n\n![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)\n\n### Table Column\n\n```php\nuse Tapp\\FilamentCountryCodeField\\Tables\\Columns\\CountryCodeColumn;\n\npublic static function table(Table $table): Table\n{\n    return $table\n        -\u003ecolumns([\n            //...\n            CountryCodeColumn::make('country_code'),\n        ])\n        // ...\n}\n```\n\n### Table Filter\n\n```php\nuse Tapp\\FilamentCountryCodeField\\Tables\\Filters\\CountryCodeSelectFilter;\n\npublic static function table(Table $table): Table\n{\n    return $table\n        //...\n        -\u003efilters([\n            CountryCodeSelectFilter::make('country_code'),\n            // ...\n        ])\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftappnetwork%2Ffilament-country-code-field","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftappnetwork%2Ffilament-country-code-field","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftappnetwork%2Ffilament-country-code-field/lists"}