lasthourcloud/app/Models/Application.php

34 lines
853 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Spatie\Activitylog\Models\Activity;
class Application extends BaseModel
{
2023-03-27 18:14:33 +02:00
public function environment()
{
2023-03-27 18:14:33 +02:00
return $this->belongsTo(Environment::class);
}
2023-03-28 15:47:37 +02:00
public function settings()
{
return $this->hasOne(ApplicationSetting::class);
}
2023-03-27 14:31:42 +02:00
public function destination()
{
return $this->morphTo();
}
2023-03-28 12:09:34 +02:00
public function source()
{
return $this->morphTo();
}
public function deployments()
{
return Activity::where('subject_id', $this->id)->where('properties->deployment_uuid', '!=', null)->orderBy('created_at', 'desc')->get();
}
public function get_deployment(string $deployment_uuid)
2023-03-28 15:47:37 +02:00
{
return Activity::where('subject_id', $this->id)->where('properties->deployment_uuid', '=', $deployment_uuid)->first();
2023-03-28 15:47:37 +02:00
}
}