'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'); } }