@csrf @method('POST')
@component('front.components.select_recursive', [ 'label' => NULL, 'select_label' => __('Kategori Seçiniz'), 'name' => 'determinationCategoryId', 'options' => $categories, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => Request::input('determinationCategoryId'), ]) @endcomponent
@if (isset($searchStats)) @foreach ($searchStats as $city_title => $city_total) @php $city = App\Models\DeterminationCity::where('title',$city_title)->first(); if(!empty($city->id)){ $city_id = $city->id; }else{ $city_id = NULL; } @endphp @endforeach
{{__('Şehir') }} {{ __('Tespit Sayısı') }}
{{ $city_title }} {{ $city_total }}
@endif