phpvms/app/Models/FlightFieldValue.php

51 lines
915 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use App\Contracts\Model;
use Illuminate\Database\Eloquent\Casts\Attribute;
/**
* Class FlightFieldValue
2018-08-27 00:40:04 +08:00
*
* @property string flight_id
* @property string name
* @property string value
*/
class FlightFieldValue extends Model
{
public $table = 'flight_field_values';
2018-03-21 08:40:19 +08:00
protected $fillable = [
'flight_id',
'name',
'slug',
'value',
];
public static $rules = [];
/**
* 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),
]
);
}
/**
* Relationships
*/
public function flight()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Flight::class, 'flight_id');
}
}