@php $event_map_search_fields = setting_item_array('event_map_search_fields'); $event_map_search_fields = array_values(\Illuminate\Support\Arr::sort($event_map_search_fields, function ($value) { return $value['position'] ?? 0; })); @endphp @if(!empty($event_map_search_fields)) @foreach($event_map_search_fields as $field) @switch($field['field']) @case ('location') @include('Event::frontend.layouts.search-map.fields.location') @break @case ('attr') @include('Event::frontend.layouts.search-map.fields.attr') @break @case ('date') @include('Event::frontend.layouts.search-map.fields.date') @break @case ('price') @include('Event::frontend.layouts.search-map.fields.price') @break @case ('advance')
{{__('More filters')}}
@break @endswitch @endforeach @endif