Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 374 Bytes

html-clean.md

File metadata and controls

22 lines (13 loc) · 374 Bytes

HTML Clean Rule

Validate if Text is Free of any HTML Tags

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

The field under validation must be free of any html code.

Parameters

none

Example

use Intervention\Validation\Rules\HtmlClean;

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