'int', 'user_id' => 'int', 'year' => 'int', 'total_days' => 'float', 'used_days' => 'float', 'remaining_days' => 'float', ]; public function user(): BelongsTo { return $this->belongsTo(\App\Models\User::class, 'user_id'); } public function getRemainingAttribute(): float { return $this->remaining_days ?? ($this->total_days - $this->used_days); } }