41 lines
		
	
	
		
			975 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			975 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Casts\Attribute;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class ApplicationSetting extends Model
 | 
						|
{
 | 
						|
    protected $cast = [
 | 
						|
        'is_static' => 'boolean',
 | 
						|
        'is_auto_deploy_enabled' => 'boolean',
 | 
						|
        'is_force_https_enabled' => 'boolean',
 | 
						|
        'is_debug_enabled' => 'boolean',
 | 
						|
        'is_preview_deployments_enabled' => 'boolean',
 | 
						|
        'is_git_submodules_enabled' => 'boolean',
 | 
						|
        'is_git_lfs_enabled' => 'boolean',
 | 
						|
    ];
 | 
						|
 | 
						|
    protected $guarded = [];
 | 
						|
 | 
						|
    public function isStatic(): Attribute
 | 
						|
    {
 | 
						|
        return Attribute::make(
 | 
						|
            set: function ($value) {
 | 
						|
                if ($value) {
 | 
						|
                    $this->application->ports_exposes = 80;
 | 
						|
                }
 | 
						|
                $this->application->save();
 | 
						|
 | 
						|
                return $value;
 | 
						|
            }
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function application()
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Application::class);
 | 
						|
    }
 | 
						|
}
 |