MorphManyCommentsTrait.php 389 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: sdf_sky
  5. * Date: 15/12/17
  6. * Time: 下午3:24
  7. */
  8. namespace App\Models\Relations;
  9. trait MorphManyCommentsTrait
  10. {
  11. /**
  12. * Get the comments relation.
  13. *
  14. * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
  15. */
  16. public function comments()
  17. {
  18. return $this->morphMany('App\Models\Comment','source');
  19. }
  20. }