Skip to content

Commit 531651f

Browse files
authored
Adding numeric as a type
This is probably the next most common type. I've kept the color blue not knowing what you'd want to do there.
1 parent a613152 commit 531651f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

resources/views/index.blade.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@ class="inline-flex text-xs"
278278
@if (str_contains($rule, 'integer'))
279279
<span class="inline-flex items-center justify-center px-2 py-1 text-xs font-bold leading-none text-blue-800 bg-blue-300 rounded">Integer</span>
280280
@endif
281+
@if (str_contains($rule, 'numeric'))
282+
<span class="inline-flex items-center justify-center px-2 py-1 text-xs font-bold leading-none text-blue-800 bg-blue-300 rounded">Numeric</span>
283+
@endif
281284
@if (str_contains($rule, 'string'))
282285
<span class="inline-flex items-center justify-center px-2 py-1 text-xs font-bold leading-none text-green-100 bg-green-500 rounded">String</span>
283286
@endif

0 commit comments

Comments
 (0)