| 1 | <?php |
||
| 8 | class LotDeliveryPayment extends Repository |
||
| 9 | { |
||
| 10 | use ActivateableTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $table = 'lot_delivery_payment'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | public $timestamps = false; |
||
| 21 | protected $fillable = ['lot_id', 'method_id', 'method_type']; |
||
| 22 | |||
| 23 | public function lot() |
||
| 27 | } |