Problem on Phone Input

     ->searchable(),
                PhoneInput::make('phone')
                    ->required()
                    ->defaultCountry('my')
                    ->initialCountry('my')
                    ->validationMessages([
                        'phone:MY' => 'The phone not number'
                    ])
                    ->validateFor(
                        country: 'MY',
                        // type: libPhoneNumberType::MOBILE | libPhoneNumberType::FIXED_LINE,
                        lenient: true,
                    ),
`
I got the probelm on libPhoneNumberType not found
Was this page helpful?