Ken 1 неделя назад
Родитель
Сommit
85d2cbf70a
1 измененных файлов с 1 добавлено и 12 удалено
  1. 1 12
      app/Models/Withdraw.php

+ 1 - 12
app/Models/Withdraw.php

@@ -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