Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
22 | public function rules(): array |
||
23 | { |
||
24 | return [ |
||
25 | 'title' => 'required|max:200', |
||
26 | 'description' => 'nullable', |
||
27 | 'date' => 'nullable|date', |
||
28 | 'active' => 'nullable', |
||
29 | 'position' => 'nullable', |
||
30 | 'meta_name' => 'nullable|max:100', |
||
31 | 'meta_description' => 'nullable|max:255', |
||
32 | 'meta_keywords' => 'nullable|max:100', |
||
33 | ]; |
||
36 |