* * Whether the model should automatically reload its media relationship after modification. */ trait Media { use Mediable; /** * Relationship for all attached media. * @return \Illuminate\Database\Eloquent\Relations\MorphToMany */ public function media() { $media = $this->morphToMany(config('mediable.model'), 'mediable') ->withPivot('tag', 'order') ->orderBy('order'); // Skip deleted media if not detached if (config('mediable.detach_on_soft_delete') == false) { $media->whereNull('deleted_at'); } return $media; } }