mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 14:56:51 +01:00 
			
		
		
		
	* Add php 8.4 * Update ide helper * Add php 8.4 * Update laravel sanctum * Update laravel framework * Hash rounds were increased * This is always false * Extend model now * This does nothing * Move model validation methods to trait * Remove base model * Backup routes were previously referenced by uuids * Remove commented code * Upgrade laravel/framework * Fix migration * Update ide helper * Update sanctum * Add version to composer * Add this back in, fixed * Make this protected to be safer
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use App\Contracts\Validatable;
 | 
						|
use App\Traits\HasValidation;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
 | 
						|
 | 
						|
/**
 | 
						|
 * @property int $id
 | 
						|
 * @property int $server_id
 | 
						|
 * @property int $variable_id
 | 
						|
 * @property string $variable_value
 | 
						|
 * @property \Carbon\CarbonImmutable|null $created_at
 | 
						|
 * @property \Carbon\CarbonImmutable|null $updated_at
 | 
						|
 * @property \App\Models\EggVariable $variable
 | 
						|
 * @property \App\Models\Server $server
 | 
						|
 */
 | 
						|
class ServerVariable extends Model implements Validatable
 | 
						|
{
 | 
						|
    use HasValidation;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The resource name for this model when it is transformed into an
 | 
						|
     * API representation using fractal.
 | 
						|
     */
 | 
						|
    public const RESOURCE_NAME = 'server_variable';
 | 
						|
 | 
						|
    protected $guarded = ['id', 'created_at', 'updated_at'];
 | 
						|
 | 
						|
    public static array $validationRules = [
 | 
						|
        'server_id' => 'required|int',
 | 
						|
        'variable_id' => 'required|int',
 | 
						|
        'variable_value' => 'string',
 | 
						|
    ];
 | 
						|
 | 
						|
    protected function casts(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'server_id' => 'integer',
 | 
						|
            'variable_id' => 'integer',
 | 
						|
            'created_at' => 'immutable_datetime',
 | 
						|
            'updated_at' => 'immutable_datetime',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the server this variable is associated with.
 | 
						|
     */
 | 
						|
    public function server(): BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Server::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns information about a given variables parent.
 | 
						|
     */
 | 
						|
    public function variable(): BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(EggVariable::class, 'variable_id');
 | 
						|
    }
 | 
						|
}
 |