MorphManyReportTrait.php 253 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: nayo
  5. * Date: 2018/8/1
  6. * Time: 下午2:36
  7. */
  8. namespace App\Models\Relations;
  9. trait MorphManyReportTrait
  10. {
  11. public function report(){
  12. return $this->morphMany('App\Models\Report','source');
  13. }
  14. }