| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | 10 | public function rules() |
|
| 25 | { |
||
| 26 | return [ |
||
| 27 | 10 | 'cust_id' => 'nullable|numeric|unique:customers,cust_id', |
|
| 28 | 'parent_id' => 'nullable|numeric|exists:customers,cust_id|different:cust_id', |
||
| 29 | 'name' => 'required', |
||
| 30 | 'dba_name' => 'nullable', |
||
| 31 | 'address' => 'required', |
||
| 32 | 'city' => 'required', |
||
| 33 | 'zip' => 'required|numeric' |
||
| 34 | ]; |
||
| 37 |