Overview
This tag is equivalent to the route()
helper in Laravel. Useful for outputting the correct urls for all your glorious routes.
Example
Route::put('bacon/{bacon}', 'BaconController@update')->name('bacon.update');
<form action="{{ route:bacon.update :bacon="id" }}"> ... yummy bacon goodness</form>
<form action="{{ route('bacon.update', ['bacon' => $id]) }}"> ... yummy bacon goodness</form>
<form action="/bacon/6"> ... yummy bacon goodness</form>
Variables
Variable | Type | Description |
---|---|---|
name |
string |
The route's name |
route params |
various |
parameters the route requires |