- <?php
- namespace App\Models\Agent;
- use App\Models\BaseModel;
- class AgentDailyStat extends BaseModel
- {
- protected $table = 'agent_daily_stats';
- protected $guarded = [];
- protected $hidden = [];
- protected $casts = ['stat_date' => 'date', 'agent_id' => 'integer'];
- }
|