Answers for "laravel get url with http"

PHP
1

get request uri from request laravel 7

Try to use the following:
\Request::getRequestUri()
Posted by: Guest on February-02-2021
1

laravel get a url using name

$url = route('routeName');

//if there is a param:
$url = route('routeName', ['id' => 1]);

https://laravel.com/docs/5.1/helpers#method-route
Posted by: Guest on April-20-2021

Browse Popular Code Answers by Language