| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Validation\Document; |
| 4 |
|
| 5 |
use App\Billingo\Validation\Validator; |
| 6 |
|
| 7 |
class DocumentItemDataValidator extends Validator |
| 8 |
{ |
| 9 |
|
| 10 |
protected function rules(): array |
| 11 |
{ |
| 12 |
return [ |
| 13 |
'product_id' => ['required', 'integer'], |
| 14 |
'quantity' => ['required', 'numeric'], |
| 15 |
'comment' => ['optional', 'string'], |
| 16 |
'is_generate_erase_code' => ['optional', 'boolean'], |
| 17 |
]; |
| 18 |
} |
| 19 |
} |
| 20 |
|