Validate colours
220,619
34
3
Package Data
Maintainer Username: clarkeash
Maintainer Contact: me@ashleyclarke.me (Ashley Clarke)
Package Create Date: 2017-09-09
Package Last Update: 2024-03-23
Language: PHP
License: Apache-2.0
Last Refreshed: 2024-06-10 03:10:33
Package Statistics
Total Downloads: 220,619
Monthly Downloads: 3,885
Daily Downloads: 33
Total Stars: 34
Total Watchers: 3
Total Forks: 13
Total Open Issues: 4

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],
]);