Data URI Rule
Validate Data URI Scheme String
117k Downloads / Month
Open Source MIT License
117k Downloads / Month
Open Source MIT License
public Intervention\Validation\Rules\DataUri::__construct()
The field under validation must be a valid Data URI.
none
use Intervention\Validation\Rules\DataUri;
$validator = Validator::make($request->all(), [
'attribute-key' => new DataUri(),
]);
Edit