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