12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
74 lines
1.4 KiB
PHP
74 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use App\Models\Enums\PirepFieldSource;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
/**
|
|
* @property string pirep_id
|
|
* @property string name
|
|
* @property string slug
|
|
* @property string value
|
|
* @property string source
|
|
* @property Pirep pirep
|
|
*
|
|
* @method static updateOrCreate(array $array, array $array1)
|
|
*/
|
|
class PirepFieldValue extends Model
|
|
{
|
|
public $table = 'pirep_field_values';
|
|
|
|
protected $fillable = [
|
|
'pirep_id',
|
|
'name',
|
|
'slug',
|
|
'value',
|
|
'source',
|
|
];
|
|
|
|
public static $rules = [
|
|
'name' => 'required',
|
|
];
|
|
|
|
protected $casts = [
|
|
'source' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* When setting the name attribute, also set the slug
|
|
*
|
|
* @return Attribute
|
|
*/
|
|
public function name(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: fn ($name) => [
|
|
'name' => $name,
|
|
'slug' => str_slug($name),
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* If it was filled in from ACARS, then it's read only
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function readOnly(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn ($_, $attrs) => $this->source === PirepFieldSource::ACARS
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Foreign Keys
|
|
*/
|
|
public function pirep()
|
|
{
|
|
return $this->belongsTo(Pirep::class, 'pirep_id');
|
|
}
|
|
}
|