“A rota de Laravel é a rota atual” Respostas de código

Laravel Obtenha o nome da rota atual

Route::currentRouteName()
Beautiful Bird

Laravel Obtenha o nome da rota atual

request()->route()->getName()
mvmrik

Obtenha a rota atual Laravel

get URL:
{{ Request::url() }} // http://localhost/path

get path:
{{ Request::path() }} // path
hirohito

A rota de Laravel é a rota atual

Route::currentRouteName()
Route::getCurrentRoute()->getPath();
\Request::route()->getName()
Route::currentRouteName(); //use Illuminate\Support\Facades\Route;
Route::getCurrentRoute()->getActionName();
$uri = $request->path();
Tiago F2

A rota de Laravel é a rota atual

\Route::currentRouteName() == 'my_route_name'
Tiago F2

Respostas semelhantes a “A rota de Laravel é a rota atual”

Perguntas semelhantes a “A rota de Laravel é a rota atual”

Mais respostas relacionadas para “A rota de Laravel é a rota atual” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código