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';
|
|
|
|
|
|
|
|
public $fillable
|
|
|
|
= [
|
|
|
|
'name',
|
|
|
|
'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be casted to native types.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts
|
|
|
|
= [
|
|
|
|
'name' => 'string',
|
|
|
|
'required' => 'integer',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validation rules
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $rules
|
|
|
|
= [
|
|
|
|
'name' => 'required',
|
|
|
|
];
|
|
|
|
}
|