phpvms/app/Models/PirepComment.php
2018-01-03 15:27:56 -06:00

39 lines
598 B
PHP

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