12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
51 lines
915 B
PHP
51 lines
915 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
/**
|
|
* Class FlightFieldValue
|
|
*
|
|
* @property string flight_id
|
|
* @property string name
|
|
* @property string value
|
|
*/
|
|
class FlightFieldValue extends Model
|
|
{
|
|
public $table = 'flight_field_values';
|
|
|
|
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()
|
|
{
|
|
return $this->belongsTo(Flight::class, 'flight_id');
|
|
}
|
|
}
|