'decimal:2', 'active' => 'boolean', ]; /** * Get the role that owns the team member. */ public function role() { return $this->belongsTo(Role::class); } /** * Get the allocations for the team member. */ public function allocations(): HasMany { return $this->hasMany(Allocation::class); } /** * Get the actuals for the team member. */ public function actuals(): HasMany { return $this->hasMany(Actual::class); } /** * Get the PTOs for the team member. */ public function ptos(): HasMany { return $this->hasMany(Pto::class); } }