Looking to hire Laravel developers? Try LaraJobs

colour maintained by laravel-validation-rules

Description
Validate colours
Last update
2023/02/15 16:19 (dev-master)
License
Links
Downloads
294 114

Comments
comments powered by Disqus

Colour

Validates colours, currently supporting hex codes only.

Installation

composer require laravel-validation-rules/colour

Usage

use LVR\Colour\Hex;

$request->validate([
    'colour' => ['required', new Hex],
]);