Comment.php 312 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Comment extends Model
  5. {
  6. //
  7. protected $fillable = [
  8. 'post_id',
  9. 'author_name',
  10. 'body',
  11. 'is_approved',
  12. ];
  13. public function post()
  14. {
  15. return $this->belongsTo(Post::class);
  16. }
  17. }