Laravel에서 현재 URL을 얻는 방법

2923 단어 urllaravelphplaravel8
이 기사에서는 laravel에서 현재 URL을 얻는 방법을 볼 것입니다. laravel 8에서 현재 페이지 URL을 얻으려면 current(), full(), request(), url() 유형과 같은 많은 메소드를 사용할 수 있습니다. 여기서는 laravel get current URL의 예를 보여드리겠습니다. 이 예제에서는 도우미와 함수를 사용했습니다.

따라서 laravel 8 현재 URL 가져오기, laravel 8에서 현재 페이지 URL 가져오기, laravel 8에서 전체 URL 가져오기, laravel 8에서 현재 URL 찾기, laravel 8 URL 경로 가져오기, laravel 컨트롤러에서 현재 URL 가져오기, 가져오는 방법 laravel 블레이드의 현재 URL

full() with Helper and Query string parameters



$currenturl = url()->full();

dd($currenturl);



Read Also : Laravel 8 Socialite Login with Facebook Account


current() with Helper



$currenturl = url()->current();

dd($currenturl);


using Request



$currenturl = Request::url();

dd($currenturl);



Read Also : Laravel 8 Autocomplete Search from Database


current() with Facade



$currenturl = URL::current();

dd($currenturl);


full() with Facade and Query string parameters



$currenturl = URL::full();

dd($currenturl);



Read Also : Google Line Chart Example in Laravel 8


Get Previous URL in Laravel :



$pre_url= url()->previous();

dd($pre_url);


Get Current Route in Laravel :



$cur_route = Route::current()->getName();

dd($cur_route);


다음을 좋아할 수도 있습니다.
  • Read Also : Laravel orderBy, groupBy and limit Example
  • Read Also : Laravel 8 Yajra Datatable Example Tutorial
  • Read Also : How To Increase Session Lifetime In Laravel
  • 좋은 웹페이지 즐겨찾기