Comment.php 136 B

12345678910
  1. <?php
  2. namespace App;
  3. class Comment extends Model
  4. {
  5. public function post() {
  6. return $this->belongsTo(Post::class);
  7. }
  8. }