“Laravel otrzymuje parametry trasy w ostrze” Kod odpowiedzi

Nazwana trasa z parametrem laravel

Route::get('/menu/{category}/{product}/{item}', ['as' => 'named.route' , 'uses' => 'MenuController@listItem']);

// to get the actual linke
route('named.route', ['category' => $category->id, 'product' => $product->id, 'item' => $item->id]);
Xanthous Xenomorph

Laravel Route Param Blade

<a class="nav-link" href=" {{ route('profiles.show',$logged_user) }}">
the preacher

Laravel otrzymuje parametry trasy w ostrze

//Swap out PARAMETER_HERE with the specific parameter you need.

\Route::current()->parameter('PARAMETER_HERE')
//A common use case for this would be to output specific content based on conditional logic.

@if( \Route::current()->parameter('account') === 'edit' )
     //Edit Account Form Here
@endif
hansal

Jak zdobyć parametr trasy w Ostrze?

{{dd(request()->route()->parameters)}}
Jaskaran

Odpowiedzi podobne do “Laravel otrzymuje parametry trasy w ostrze”

Pytania podobne do “Laravel otrzymuje parametry trasy w ostrze”

Więcej pokrewnych odpowiedzi na “Laravel otrzymuje parametry trasy w ostrze” w PHP

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

Przeglądaj inne języki kodu