amilajack said: public/purchase/%7Bid%7D
%7D is the ASCII code for the } character, which is probably leaking through from a template...
Hi, any progress in this topic? I have the same issue and this is NO fun.
<div id="search-panel">
{!! Form::open(['action' => 'RegionsController@search']) !!}
<ul>
<li>
{!! Form::radio('type', 'trails', null, ['id' => 'trails', 'data-submit-form']) !!}
<label for="trails"><span></span>Wycieczki i szlaki</label>
</li>
<li>
{!! Form::radio('type', 'articles', null, ['id' => 'articles', 'data-submit-form']) !!}
<label for="articles"><span></span>Zabytki i historia</label>
</li>
</ul>
{!! Form::close() !!}
</div>
If I remove action, it works properly, otherwise form action equals to "localhost/some-folders/public/%7Bmy-wildcard%7D?type=articlesµregions=1" - after checking articles radio button. It is not bad, I do not necessarily have to use POST, or I can just write <form action="...
Nevertheless, I'd like to know, how should I properly access a route with a wildcard then?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community