Validate colours
278,661
34
2
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: 2026-03-04 03:26:48
Package Statistics
Total Downloads: 278,661
Monthly Downloads: 8,853
Daily Downloads: 560
Total Stars: 34
Total Watchers: 2
Total Forks: 14
Total Open Issues: 3

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