| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- /**
- * @property $date
- * @property $recharge_amount
- * @property $withdrawal_amount
- * @property $status
- * @property $backflow_ratio
- * @property $member_id
- * @property $amount
- *
- */
- class Backflow extends BaseModel
- {
- protected $table = 'backflow';
- protected $fillable = ['date', 'member_id', 'recharge_amount', 'withdrawal_amount', 'backflow_ratio', 'amount', 'status'];
- function user()
- {
- return $this->belongsTo(User::class, 'member_id', 'member_id')
- ->select(['id', 'member_id', 'username', 'first_name']);
- }
- }
|