coolify/app/Models/ApplicationSetting.php
2023-04-25 14:43:35 +02:00

19 lines
341 B
PHP

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