AgentDailyStat.php 277 B

12345678910
  1. <?php
  2. namespace App\Models\Agent;
  3. use App\Models\BaseModel;
  4. class AgentDailyStat extends BaseModel
  5. {
  6. protected $table = 'agent_daily_stats';
  7. protected $guarded = [];
  8. protected $hidden = [];
  9. protected $casts = ['stat_date' => 'date', 'agent_id' => 'integer'];
  10. }