phpvms/app/Models/PirepField.php
2018-02-06 13:46:23 -06:00

60 lines
1.1 KiB
PHP

<?php
namespace App\Models;
/**
* Class PirepField
* @package App\Models
*/
class PirepField extends BaseModel
{
public $table = 'pirep_fields';
public $timestamps = false;
public $fillable = [
'name',
'slug',
'required',
];
protected $casts = [
'required' => 'boolean',
];
public static $rules = [
'name' => 'required',
];
/**
* Create/update the field slug
*/
protected static function boot()
{
parent::boot();
/**
* On creation
*/
static::creating(function (PirepField $model) {
$model->slug = str_slug($model->name);
});
/**
* When updating
*/
static::updating(function(PirepField $model) {
$model->slug = str_slug($model->name);
});
}
/**
* 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);
}
}