mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 12:33:06 +00:00
12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class StandaloneDocker extends BaseModel
|
|
{
|
|
public function applications()
|
|
{
|
|
return $this->morphMany(Application::class, 'destination');
|
|
}
|
|
}
|