12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App;
- class Post extends Model
- {
-
- protected $fillable = ['body', 'title'];
-
- public function addComment(string $body)
- {
- $this->comments()->create(compact('body'));
- }
- public function comments()
- {
- return $this->hasMany(Comment::class);
- }
- public function user()
- {
- return $this->belongsTo(User::class);
- }
- }
|