phpvms/app/Models/PirepComment.php
2018-01-08 09:22:12 -06:00

34 lines
521 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',
];
public static $rules = [
'comment' => 'required',
];
public function pirep()
{
return $this->belongsTo(Pirep::class, 'pirep_id');
}
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}