WithdrawLog.php 209 B

1234567891011
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WithdrawLog extends Model{
  5. protected $connection = 'mysql_w';
  6. protected $table='withdraw_log';
  7. protected $guarded=[];
  8. }