*/ use HasFactory; public $timestamps = false; protected $primaryKey = 'date'; public $incrementing = false; protected $keyType = 'string'; protected function casts(): array { return [ 'date' => 'date', 'price_usd' => 'decimal:2', 'prediction_generated_at' => 'datetime', ]; } }