GRid Rule
Validate Global Release Identifier (GRid)
114k Downloads / Month
Open Source MIT License
114k Downloads / Month
Open Source MIT License
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