coolify/app/Models/Service.php
2023-08-08 11:51:36 +02:00

18 lines
246 B
PHP

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