Sorry, no results were found for this search.

IMEI Rule

Validate International Mobile Equipment Identity

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).

Parameters

none

Example

use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Imei;

$validator = Validator::make($request->all(), [
    'attribute-key' => new Imei(),
]);
Edit