Laravel에서 현재 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);
다음을 좋아할 수도 있습니다.
Reference
이 문제에 관하여(Laravel에서 현재 URL을 얻는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/how-to-get-current-url-in-laravel-289j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)