GRid Rule
Validate Global Release Identifier (GRid)
129k Downloads / Month
Open Source MIT License
129k Downloads / Month
Open Source MIT License
Learn how to validate the Global Release Identifier (GRid) format with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Grid::__construct()
Checks for a valid Global Release Identifier (GRid).
none
use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Grid;
$validator = Validator::make($request->all(), [
'attribute-key' => new Grid(),
]);
Edit