coolify/app/Models/ProjectSetting.php
Andras Bacsai b8708f086e feat: initial api endpoints
feat: server resources are now looks better
2024-02-16 21:56:38 +01:00

16 lines
231 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProjectSetting extends Model
{
protected $guarded = [];
public function project()
{
return $this->belongsTo(Project::class);
}
}