<?php namespace AppModels; use IlluminateDatabaseEloquentModel; class Comment extends Model { /** * Get the post that owns the comment. */ public function post() { return $this->belongsTo(Post::class); } }