\#21 PIREP scaffolding
This commit is contained in:
45
app/Models/PirepFieldValues.php
Normal file
45
app/Models/PirepFieldValues.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Eloquent as Model;
|
||||
|
||||
/**
|
||||
* Class PirepField
|
||||
*
|
||||
* @package App\Models
|
||||
*/
|
||||
class PirepFieldValues extends Model
|
||||
{
|
||||
public $table = 'pirep_field_values';
|
||||
|
||||
public $fillable
|
||||
= [
|
||||
'pirep_id',
|
||||
'name',
|
||||
'value',
|
||||
'source',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be casted to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $casts
|
||||
= [
|
||||
'name' => 'string',
|
||||
'value' => 'string',
|
||||
'source' => 'integer',
|
||||
];
|
||||
|
||||
/**
|
||||
* Validation rules
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public static $rules
|
||||
= [
|
||||
'name' => 'required',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user