refactor(deployment): enhance deployment data retrieval and relationships

- Updated the deployments method in DeploymentsIndicator to include application environment and project relationships for better data context.
- Refactored the application method in ApplicationDeploymentQueue to use Eloquent relationships instead of manual fetching, improving performance and readability.
- Enhanced the deployments indicator view to display application environment and project names, providing clearer deployment context.
This commit is contained in:
Andras Bacsai
2025-10-04 18:02:20 +02:00
parent 158747c8b1
commit 4b947a0d64
3 changed files with 7 additions and 5 deletions

View File

@@ -41,11 +41,9 @@ class ApplicationDeploymentQueue extends Model
{
protected $guarded = [];
public function application(): Attribute
public function application()
{
return Attribute::make(
get: fn () => Application::find($this->application_id),
);
return $this->belongsTo(Application::class);
}
public function server(): Attribute