IMEI Rule
Validate International Mobile Equipment Identity
172k Downloads / Month
Open Source MIT License
172k Downloads / Month
Open Source MIT License
Validate International Mobile Equipment Identifier (IMEI) in Laravel with Intervention Validation. Device checks.
public Intervention\Validation\Rules\Imei::__construct()
The field under validation must be an International Mobile Equipment Identity (IMEI).
none
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Imei; $validator = Validator::make($request->all(), [ 'attribute-key' => new Imei(), ]);