*/ protected $fillable = [ 'goal_id', 'happened_at', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'happened_at' => 'datetime', ]; /** * Get the goal associated with the streak. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Goal, $this> */ public function goal(): BelongsTo { return $this->belongsTo(Goal::class); } }