GRid Rule

Validate Global Release Identifier (GRid)

113k Downloads / Month

Open Source MIT License

public Intervention\Validation\Rules\Grid::__construct()

Checks for a valid Global Release Identifier (GRid).

Parameters

none

Example

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

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