We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. I found this. On config file you have comment ...set null for URL::current() //is without query string
seotools/src/resources/config/seotools.php
Line 13 in 34794e6
On Fasade class SEOMeta.class you have methon getCanonical() check link
seotools/src/SEOTools/SEOMeta.php
Line 535 in 34794e6
Inside this method you have when is null use app('url')->full(); // url full is with query string
\Laravel documentation URL: https://laravel.com/docs/5.8/urls copied code
// Get the current URL without the query string... echo url()->current();
// Get the current URL without the query string...
echo url()->current();
// Get the current URL including the query string... echo url()->full();
// Get the current URL including the query string...
echo url()->full();
// Get the full URL for the previous request... echo url()->previous();
// Get the full URL for the previous request...
echo url()->previous();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi.
I found this. On config file you have comment ...set null for URL::current() //is without query string
seotools/src/resources/config/seotools.php
Line 13 in 34794e6
On Fasade class SEOMeta.class you have methon getCanonical() check link
seotools/src/SEOTools/SEOMeta.php
Line 535 in 34794e6
Inside this method you have when is null use app('url')->full(); // url full is with query string
\Laravel documentation URL: https://laravel.com/docs/5.8/urls
copied code
// Get the current URL without the query string...
echo url()->current();
// Get the current URL including the query string...
echo url()->full();
// Get the full URL for the previous request...
echo url()->previous();
The text was updated successfully, but these errors were encountered: