<?php namespace App\Models; class Withdraw extends BaseModel { protected $table = 'withdraws'; protected $fillable = ['member_id', 'amount', 'service_charge', 'to_account', 'after_balance', 'address', 'status', 'remark']; }