1Get the current url
2
3here using the Request::url() method. It will return the entire URL, but strip the query string from it.
4
5<p> Url: {{ Request::url() }} </p>
6Output
7
8Url: http://localhost:8000/post/demo
1\Route::current()
2############### OR ####################
3$request->getRequestUri()