This package provides custom form field for Filament integration with ViaCep.
You can install the package via composer:
composer require rmsramos/postal-code
use Filament\Forms\Components\TextInput;
use Rmsramos\PostalCode\Components\PostalCode;
public static function form(Form $form): Form
{
return $form
->schema([
PostalCode::make('postal_code')
->viaCep(
errorMessage: 'CEP inválido.', // Custom message to display if the CEP is invalid.
setFields: [
'street' => 'logradouro',
'number' => 'numero',
'complement' => 'complemento',
'district' => 'bairro',
'city' => 'localidade',
'state' => 'uf'
]
),
TextInput::make('street'),
TextInput::make('number')
->extraAlpineAttributes([
'x-on:cep.window' => "\$el.focus()",
]),,
TextInput::make('complement'),
TextInput::make('district'),
TextInput::make('city'),
TextInput::make('state'),
])
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.