<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Author extends Model { function books() { return $this->hasMany(Book::class); } function comments() { return $this->morphMany(Comment::class, "commentable"); } }