admin can add comments to PIREPs #70

This commit is contained in:
Nabeel Shahzad
2018-01-03 15:27:56 -06:00
parent fce6c987fd
commit be6e5e8dec
20 changed files with 179 additions and 105 deletions

View File

@@ -11,23 +11,28 @@ class PirepComment extends BaseModel
{
public $table = 'pirep_comments';
public $fillable
= [
'comment',
];
public $fillable = [
'pirep_id',
'user_id',
'comment',
];
/**
* Validation rules
*
* @var array
*/
public static $rules
= [
'comment' => 'required',
];
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');
}
}