Skip to content Skip to footer navigation
You are reading the docs for an old version of Statamic. Consider upgrading to Statamic 6.

Route Tag

The route tag allows you to generate the full URL for a given named route, including any parameters.

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