phpvms/app/Models/PirepField.php

60 lines
1.1 KiB
PHP
Raw Normal View History

2017-06-29 08:54:05 +08:00
<?php
namespace App\Models;
/**
* Class PirepField
* @package App\Models
*/
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',
'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',
];
/**
* 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);
}
2017-06-29 08:54:05 +08:00
}