coolify/app/Models/Service.php
2023-03-28 08:28:03 +02:00

17 lines
245 B
PHP

<?php
namespace App\Models;
class Service extends BaseModel
{
public function environment()
{
return $this->belongsTo(Environment::class);
}
public function destination()
{
return $this->morphTo();
}
}