Greetings community
I'm working with this route in laravel
Route::get('/{tienda}/{ruta}', array('before' => 'validar_tienda', function($tienda, $ruta)
{...}
to invoke it from the browser bar I have no major problem with the dynamic parameters "store and route"
The question is how could you invoke it from a href? .. something like the following
href="{{ Route ('/',['mitienda'],'/',['sesionproducto']) }}"