123456789101112131415161718 |
- <?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);
- }
- }
|