nurmuhammet/nova-inputmask
A Laravel Nova field.
14,803
| Install | |
|---|---|
composer require nurmuhammet/nova-inputmask |
|
| Latest Version: | 2.0.2 |
| PHP: | ^7.3|^8.0|^8.1|^8.2|^8.3|^8.4 |
| License: | MIT |
| Last Updated: | Apr 23, 2025 |
| Links: | GitHub · Packagist |
Maintainer: nurmuhammet
Nova input mask
Hello, this is just a wrapper for input mask plugin.
Requirements
php: >=8.0laravel/nova: ^4.0
Installation
Install the package in a Laravel Nova project via Composer:
# Install nova-inputmask
composer require nurmuhammet/nova-inputmask
Usage
use Nurmuhammet\NovaInputmask\NovaInputmask;
// ...
NovaInputmask::make('Phone number')
->mask('999999') // mask syntax here
// Storing raw value can be good for validation and search porpuses, so use storeRawValue() method. Resolved value will be masked automatically.
NovaInputmask::make('Phone number')
->storeRawValue()
If you find my open-source library helpful, consider supporting it by buying me a coffee: Buy Me a Coffee. ☕
Related Packages
unm/laravel4-opencloud
A laravel 4.1 service provider package that wraps the Rackspace/Openstack PHP SD...
4
7