Answers for "check url in laravel"

PHP
0

get current route in blade laravel

Get the current url

here using the Request::url() method. It will return the entire URL, but strip the query string from it.

<p> Url: {{  Request::url() }} </p>
Output

Url: http://localhost:8000/post/demo
Posted by: Guest on October-13-2020
0

laravel check if string is url

if (filter_var($string, FILTER_VALIDATE_URL)) { 
  // you're good
}
Posted by: Guest on July-06-2021

Browse Popular Code Answers by Language