phpvms/app/Models/PirepComment.php

34 lines
488 B
PHP
Raw Normal View History

2017-08-02 23:17:54 +08:00
<?php
namespace App\Models;
/**
* Class PirepEvent
*
* @package App\Models
*/
class PirepComment extends BaseModel
2017-08-02 23:17:54 +08:00
{
public $table = 'pirep_comments';
public $fillable
= [
'comment',
];
/**
* Validation rules
*
* @var array
*/
public static $rules
= [
'comment' => 'required',
];
public function pirep()
{
return $this->belongsTo('App\Models\Pirep', 'pirep_id');
}
}