Book.php 251 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Book extends Model
  5. {
  6. function author() {
  7. return $this->belongsTo(Author::class);
  8. }
  9. function comments() {
  10. return $this->morphMany(Comment::class, "commentable");
  11. }
  12. }