2018-03-21 02:06:06 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2019-07-16 03:44:31 +08:00
|
|
|
use App\Contracts\Model;
|
2022-03-14 23:45:18 +08:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2018-03-21 02:06:06 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class FlightField
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-21 02:06:06 +08:00
|
|
|
* @property string name
|
|
|
|
* @property string slug
|
2020-03-03 23:20:13 +08:00
|
|
|
* @property bool required
|
2018-03-21 02:06:06 +08:00
|
|
|
*/
|
|
|
|
class FlightField extends Model
|
|
|
|
{
|
|
|
|
public $table = 'flight_fields';
|
|
|
|
public $timestamps = false;
|
|
|
|
|
2018-03-21 08:40:19 +08:00
|
|
|
protected $fillable = [
|
2018-03-21 02:06:06 +08:00
|
|
|
'name',
|
|
|
|
'slug',
|
|
|
|
'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
'required' => 'boolean',
|
|
|
|
];
|
|
|
|
|
|
|
|
public static $rules = [
|
|
|
|
'name' => 'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When setting the name attribute, also set the slug
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2022-03-14 23:45:18 +08:00
|
|
|
* @return Attribute
|
2018-03-21 02:06:06 +08:00
|
|
|
*/
|
2022-03-14 23:45:18 +08:00
|
|
|
public function name(): Attribute
|
2018-03-21 02:06:06 +08:00
|
|
|
{
|
2022-03-14 23:45:18 +08:00
|
|
|
return Attribute::make(
|
|
|
|
set: fn ($name) => [
|
|
|
|
'name' => $name,
|
|
|
|
'slug' => str_slug($name),
|
|
|
|
]
|
|
|
|
);
|
2018-03-21 02:06:06 +08:00
|
|
|
}
|
|
|
|
}
|