Title Case Rule

Validate String Formated in Title Case

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.

Parameters

none

Example

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

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