app\models\Document::getPreviewUrl PHP Method

getPreviewUrl() public method

public getPreviewUrl ( ) : Illuminate\Contracts\Routing\UrlGenerator | null | string
return Illuminate\Contracts\Routing\UrlGenerator | null | string
    public function getPreviewUrl()
    {
        return $this->preview ? url('documents/preview/' . $this->public_id . '/' . $this->name . '.' . pathinfo($this->preview, PATHINFO_EXTENSION)) : null;
    }