@@ -8,18 +8,7 @@ class Withdraw extends BaseModel
{
protected $table = 'withdraws';
- protected $fillable = [
- 'member_id',
- 'amount',
- 'service_charge',
- 'to_account',
- 'address',
- 'exchange_rate',
- 'status',
- 'after_balance',
- 'remark',
- 'admin_note',
- ];
+ protected $fillable = ['member_id', 'amount', 'service_charge', 'to_account', 'address', 'exchange_rate', 'status', 'after_balance', 'remark', 'admin_note'];
protected $hidden = [];
public function member(): BelongsTo