I'm using Laravel
and inside a blade
file i want to redirect to route each time an option is being selected. I tried the code below but it doesn’t redirect to the link when i select an option :
<select name="zone" autocomplete="off" class="custom-select">
<option data-placeholder="true">Zone</option>
@foreach ($zones as $key => $zone)
<option value="{{ $key }}">
<a href="{{ route(Route::current()->getName(), ['zone' => $zone]) }}">
{{ $zone }}
</a>
</option>
@endforeach
</select>