Comment.php 277 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Comment extends Model
  5. {
  6. public function profile()
  7. {
  8. return $this->belongsTo(Profile::class);
  9. }
  10. public function status()
  11. {
  12. return $this->belongsTo(Status::class);
  13. }
  14. }