model->getTable()."/"; } /* * Get the path for the given media, relative to the root storage path. */ public function getPath(Media $media): string { return $this->getBasePath($media); } /* * Get the path for conversions of the given media, relative to the root storage path. */ public function getPathForConversions(Media $media): string { return $this->getBasePath($media); } /* * Get the path for responsive images of the given media, relative to the root storage path. */ public function getPathForResponsiveImages(Media $media): string { return $this->getBasePath($media).'/responsive-images/'; } }