Post.php 259 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. class Post extends Model {
  4. /**
  5. * These fields are OK for mass assignement.
  6. *
  7. * @var array
  8. */
  9. protected $fillable = ['body', 'title'];
  10. public function comments()
  11. {
  12. return $this->hasMany(Comment::class);
  13. }
  14. }