Devise\Media\Images\Manager::getImageUrl PHP Method

getImageUrl() public method

Image url for a given category and image
public getImageUrl ( $input ) : string
$input
return string
    public function getImageUrl($input)
    {
        $localPath = isset($input['category']) ? $this->CategoryPaths->fromDot($input['category']) : '';
        $browserPath = $this->CategoryPaths->browserPath($localPath);
        return $browserPath . $input['image'];
    }