2017-06-29 08:54:05 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Interfaces\Model;
|
|
|
|
|
2017-06-29 08:54:05 +08:00
|
|
|
/**
|
2018-02-07 03:46:23 +08:00
|
|
|
* Class PirepFieldValues
|
2017-06-29 08:54:05 +08:00
|
|
|
* @package App\Models
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class PirepFieldValues extends Model
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
|
|
|
public $table = 'pirep_field_values';
|
|
|
|
|
2018-03-21 08:40:19 +08:00
|
|
|
protected $fillable = [
|
2018-01-04 12:04:51 +08:00
|
|
|
'pirep_id',
|
|
|
|
'name',
|
|
|
|
'value',
|
|
|
|
'source',
|
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2018-01-04 12:04:51 +08:00
|
|
|
public static $rules = [
|
|
|
|
'name' => 'required',
|
|
|
|
];
|
2017-06-30 04:50:16 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Foreign Keys
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function pirep()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->belongsTo(Pirep::class, 'pirep_id');
|
2017-06-30 04:50:16 +08:00
|
|
|
}
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|