“Laravel Route Nazwa Blade” Kod odpowiedzi

Laravel Aktualna nazwa trasy

$route = Route::current();

$name = Route::currentRouteName();

$action = Route::currentRouteAction();
Cooperative Crab

Laravel Route Nazwa Blade

How to use routes in web.php :
  Route::get('/', function () { return view('home'); })->name('home');


How to use routes in your page.blade.php :
  <a href="{{ url("/") }}">home</a>
  // or
  <a href="{{ route('home') }}">home</a>

// Like the post if you found it usefull and help other devs to find the good answer
Worrisome Willet

Laravel to nazwa trasy

// Check if route is ***
Request::route()->named("YourRouteNameView")
gtamborero

Laravel Blade Routeis

// This has been the best way for me to test routes with parameters

@if(url()->current() == route('named-route', 'parameter')
	// do stuff
@endif
Bloody Booby

Ustaw nazwę trasy laravel

Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');
Route::get('/novanoticia', ['as' => 'route_name', 'uses' => 'HomeController@getNovaNoticia']);
Toukir_Ahmed

Odpowiedzi podobne do “Laravel Route Nazwa Blade”

Pytania podobne do “Laravel Route Nazwa Blade”

Więcej pokrewnych odpowiedzi na “Laravel Route Nazwa Blade” w PHP

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

Przeglądaj inne języki kodu