2017-06-29 08:54:05 +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-20 09:50:40 +08:00
|
|
|
|
2017-06-29 08:54:05 +08:00
|
|
|
/**
|
2018-03-19 09:37:35 +08:00
|
|
|
* @property string name
|
|
|
|
* @property string slug
|
2017-06-29 08:54:05 +08:00
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class PirepField extends Model
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
|
|
|
public $table = 'pirep_fields';
|
2018-01-01 10:59:26 +08:00
|
|
|
public $timestamps = false;
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2018-03-21 08:40:19 +08:00
|
|
|
protected $fillable = [
|
2018-01-01 10:59:26 +08:00
|
|
|
'name',
|
2018-01-24 05:48:30 +08:00
|
|
|
'slug',
|
2018-01-01 10:59:26 +08:00
|
|
|
'required',
|
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2018-01-01 10:59:26 +08:00
|
|
|
protected $casts = [
|
|
|
|
'required' => 'boolean',
|
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2018-01-01 10:59:26 +08:00
|
|
|
public static $rules = [
|
|
|
|
'name' => 'required',
|
|
|
|
];
|
2018-01-24 05:48:30 +08:00
|
|
|
|
2018-02-07 03:46:23 +08:00
|
|
|
/**
|
|
|
|
* 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-02-07 03:46:23 +08:00
|
|
|
*/
|
2022-03-14 23:45:18 +08:00
|
|
|
public function name(): Attribute
|
2018-02-07 03:46:23 +08:00
|
|
|
{
|
2022-03-14 23:45:18 +08:00
|
|
|
return Attribute::make(
|
|
|
|
set: fn ($name) => [
|
|
|
|
'name' => $name,
|
|
|
|
'slug' => str_slug($name),
|
|
|
|
]
|
|
|
|
);
|
2018-02-07 03:46:23 +08:00
|
|
|
}
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|