| 123456789101112131415161718192021 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Comment extends Model
- {
- //
- protected $fillable = [
- 'post_id',
- 'author_name',
- 'body',
- 'is_approved',
- ];
- public function post()
- {
- return $this->belongsTo(Post::class);
- }
- }
|