2017-06-29 08:54:05 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PirepField
|
|
|
|
* @package App\Models
|
|
|
|
*/
|
2017-12-26 05:19:34 +08:00
|
|
|
class PirepField extends BaseModel
|
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-01-01 10:59:26 +08:00
|
|
|
public $fillable = [
|
|
|
|
'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
|
|
|
|
|
|
|
/**
|
|
|
|
* Create/update the field slug
|
|
|
|
*/
|
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On creation
|
|
|
|
*/
|
|
|
|
static::creating(function (PirepField $model) {
|
2018-02-07 00:02:34 +08:00
|
|
|
$model->slug = str_slug($model->name);
|
2018-01-24 05:48:30 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When updating
|
|
|
|
*/
|
|
|
|
static::updating(function(PirepField $model) {
|
2018-02-07 00:02:34 +08:00
|
|
|
$model->slug = str_slug($model->name);
|
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
|
|
|
|
* @param $name
|
|
|
|
*/
|
|
|
|
public function setNameAttribute($name)
|
|
|
|
{
|
|
|
|
$this->attributes['name'] = $name;
|
|
|
|
$this->attributes['slug'] = str_slug($name);
|
|
|
|
}
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|