<?php namespace App; class Post extends Model { /** * These fields are OK for mass assignement. * * @var array */ protected $fillable = ['body', 'title']; public function comments() { return $this->hasMany(Comment::class); } }