Camel Case Rule
Validate Camel Case String
117k Downloads / Month
Open Source MIT License
117k Downloads / Month
Open Source MIT License
Explore how to validate camel case strings with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Camelcase::__construct()
The field under validation must be a formated in Camel case.
none
use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Camelcase;
$validator = Validator::make($request->all(), [
'attribute-key' => new Camelcase(),
]);
Edit