app\models\Document::getClientVFSJSUrl PHP Méthode

getClientVFSJSUrl() public méthode

public getClientVFSJSUrl ( ) : Illuminate\Contracts\Routing\UrlGenerator | null | string
Résultat Illuminate\Contracts\Routing\UrlGenerator | null | string
    public function getClientVFSJSUrl()
    {
        if (!$this->isPDFEmbeddable()) {
            return null;
        }
        return url('client/documents/js/' . $this->public_id . '/' . $this->name . '.js');
    }