Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 416 Bytes

snake-case.md

File metadata and controls

20 lines (13 loc) · 416 Bytes

Snake Case Rule

Validate String Formated in Snake Case

public Intervention\Validation\Rules\Snakecase::__construct()

The field under validation must formated as Snake case text.

Parameters

none

Example

use Intervention\Validation\Rules\Snakecase;

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