Withdraw.php 233 B

123456789
  1. <?php
  2. namespace App\Models;
  3. class Withdraw extends BaseModel
  4. {
  5. protected $table = 'withdraws';
  6. protected $fillable = ['member_id', 'amount', 'service_charge', 'to_account', 'after_balance', 'address', 'status', 'remark'];
  7. }