| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function rules() |
||
| 25 | { |
||
| 26 | return [ |
||
| 27 | 'tag' => 'required|max:255|string|unique:tags,tag,'.$this->route('tag'), |
||
|
|
|||
| 28 | 'title' => 'string|nullable', |
||
| 29 | 'subtitle' => 'string|nullable', |
||
| 30 | 'meta_description' => 'string|nullable', |
||
| 31 | 'post_image' => 'required|string', |
||
| 32 | 'layout' => 'required|string', |
||
| 33 | 'reverse_direction' => '', |
||
| 34 | ]; |
||
| 37 |