Skip to content

Commit d26d043

Browse files
committed
remove Numeric type from rules field, like other types
1 parent e1e0bc9 commit d26d043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class="inline-flex text-xs"
322322
<div class="font-mono">
323323
@foreach ($rules as $rule)
324324
@foreach (explode('|', $rule) as $r)
325-
@if (!in_array($r, ['required', 'integer', 'string', 'boolean', 'array', 'nullable', 'bail', 'file', 'image']))
325+
@if (!in_array($r, ['required', 'integer', 'string', 'boolean', 'array', 'nullable', 'bail', 'file', 'image', 'numeric']))
326326
{{$r}}
327327
@if (!$loop->last)
328328
<span class="text-gray-900 font-bold">|</span>

0 commit comments

Comments
 (0)