Title Case Rule
Validate String Formatted in Title Case
166k Downloads / Month
Open Source MIT License
166k Downloads / Month
Open Source MIT License
Explore how to validate strings formatted 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 be formatted in Title case.
none
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Titlecase; $validator = Validator::make($request->all(), [ 'attribute-key' => new Titlecase(), ]);