Attachments.php 153 B

123456789
  1. <?php
  2. namespace App\Traits;
  3. trait Attachments{
  4. public function attachments(){
  5. return $this->morphMany('App\Attachment', 'parent');
  6. }
  7. }