NewUserChargeDayStatistic.php 230 B

12345678910111213
  1. <?php
  2. namespace App\Modules\Trade\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class NewUserChargeDayStatistic extends Model
  5. {
  6. protected $table = 'new_user_charge_day_statistic';
  7. protected $guarded = [
  8. ];
  9. }