mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 04:59:30 +00:00
12 lines
188 B
PHP
12 lines
188 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Database extends BaseModel
|
|
{
|
|
public function environments()
|
|
{
|
|
return $this->morphToMany(Environment::class, 'environmentable');
|
|
}
|
|
}
|