'integer', 'is_active' => 'boolean', 'is_billable' => 'boolean', ]; /** * Get the projects for the status. */ public function projects(): HasMany { return $this->hasMany(Project::class, 'status_id'); } }