coolify/app/Models/ApplicationSetting.php
Andras Bacsai 2e8b1134b9 wip
2023-04-19 14:00:31 +02:00

18 lines
315 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ApplicationSetting extends Model
{
protected $fillable = [
'is_git_submodules_allowed',
'is_git_lfs_allowed',
];
public function application()
{
return $this->belongsTo(Application::class);
}
}