Backflow.php 402 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. class Backflow extends BaseModel
  4. {
  5. protected $table = 'backflow';
  6. protected $fillable = ['date', 'member_id', 'recharge_amount', 'withdrawal_amount', 'backflow_ratio', 'amount', 'status'];
  7. function user()
  8. {
  9. return $this->belongsTo(User::class, 'member_id', 'member_id')
  10. ->select(['id', 'member_id', 'username', 'first_name']);
  11. }
  12. }