Completed
Push — master ( afa14d...f0d99a )
by Iman
13s
created

StatisticForm   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 15
c 0
b 0
f 0
rs 10
wmc 1
1
<?php
2
3
namespace crocodicstudio\crudbooster\Modules\StatisticModule;
4
5
class StatisticForm
6
{
7
    public static function makeForm()
8
    {
9
        $form = [];
10
        $form[] = [
11
            "label" => "Name",
12
            "name" => "name",
13
            "type" => "text",
14
            "required" => true,
15
            "validation" => "required|min:3|max:255",
16
            "placeholder" => "You can only enter the letter only",
17
        ];
18
19
        return $form;
20
    }
21
}