yemeni-open-source / blade-realtime-input
Enjoy realtime input validation by passing your rules in your input itself.
Installs: 345
Dependents: 0
Suggesters: 0
Security: 0
Stars: 53
Watchers: 2
Forks: 1
Open Issues: 1
Language:Blade
Requires
- php: ^7.4|^8.0
- illuminate/support: ^7.0|^8.0|^9.0
README
Laravel Realtime input
Enjoy realtime input validation by passing your rules in your input itself.
Requirments
This package is tested with Laravel v8 and it should work on Laravel v7 and v9
Installation
Install the package by using composer:
composer require yemeni-open-source/blade-realtime-input
Basic Usage
The <input>
tag:
<x-realtime-input::strings name="username" rules="required|min:5" />
The <select>
tag:
<x-realtime-input::options rules="in:usd,yer" class="btn btn-default custom-select" name="currency" id="currency" > <option value="usd">USD</option> <option value="yer" selected>YER</option> <option value="sar">SAR</option> </x-realtime-input::options>
Advance Usage
You can add id
, class
, type
or other HTML attributes to your input like following
<x-realtime-input::strings rules="required|min:5" name="username" id="user" class="form-control" />
You can add array name like following
<x-realtime-input::strings name="username[]" rules="required|min:5" id="user" class="form-control" />
Localization
The library works as you familiar with laravel validator you can read laravel validation localization.
License
The MIT License (MIT). Please see MIT license File for more information.