phpvms/app/Models/PirepFieldValue.php
Nabeel S 23eb9dcbda
384 Laravel 6 changes (#385)
* 384 Laravel 6 changes

* Library versions

* Update package versions

* Add keyType to models

* Remove unused dependencies

* StyleCI fixes

* Fix models for test

* Fix tests output and update test runner

* Unused imports

* Update exceptions handler

* Fix login page
2019-09-13 08:05:02 -04:00

62 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use App\Contracts\Model;
use App\Models\Enums\PirepFieldSource;
/**
* @property string pirep_id
* @property string name
* @property string slug
* @property string value
* @property string source
*/
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',
];
/**
* If it was filled in from ACARS, then it's read only
*
* @return bool
*/
public function getReadOnlyAttribute()
{
return $this->source === PirepFieldSource::ACARS;
}
/**
* @param $name
*/
public function setNameAttribute($name): void
{
$this->attributes['name'] = $name;
$this->attributes['slug'] = str_slug($name);
}
/**
* Foreign Keys
*/
public function pirep()
{
return $this->belongsTo(Pirep::class, 'pirep_id');
}
}