“Trasa Laravel to obecna trasa” Kod odpowiedzi

Laravel, otrzymuj bieżącą nazwę trasy

Route::currentRouteName()
Beautiful Bird

Laravel, otrzymuj bieżącą nazwę trasy

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

Zdobądź obecną trasę Laravela

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

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

Trasa Laravel to obecna trasa

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

Trasa Laravel to obecna trasa

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

Odpowiedzi podobne do “Trasa Laravel to obecna trasa”

Pytania podobne do “Trasa Laravel to obecna trasa”

Więcej pokrewnych odpowiedzi na “Trasa Laravel to obecna trasa” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu