phpvms/app/Models/FlightField.php

42 lines
738 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use App\Interfaces\Model;
/**
* Class FlightField
* @property string name
* @property string slug
* @package App\Models
*/
class FlightField extends Model
{
public $table = 'flight_fields';
public $timestamps = false;
2018-03-21 08:40:19 +08:00
protected $fillable = [
'name',
'slug',
'required',
];
protected $casts = [
'required' => 'boolean',
];
public static $rules = [
'name' => 'required',
];
/**
* When setting the name attribute, also set the slug
* @param $name
*/
public function setNameAttribute($name): void
{
$this->attributes['name'] = $name;
$this->attributes['slug'] = str_slug($name);
}
}