| 1 | <?php |
||
| 8 | class Operation extends Repository |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $table = 'payments_operations'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $fillable = ['transaction_id', 'transaction_type', 'wallet_id', 'amount', 'type']; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 22 | */ |
||
| 23 | public function wallet() |
||
| 27 | } |