Guest User

Untitled

a guest
Nov 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. public function project()
  4. {
  5. return $this->belongsTo(Project::class, 'commentable_id', 'id');
  6. }
  7. public function task()
  8. {
  9. return $this->belongsTo(Task::class, 'commentable_id', 'id');
  10. }
  11. public function commentable()
  12. {
  13. return $this->morphTo();
  14. }
Add Comment
Please, Sign In to add comment