{{-- Extends layout --}} @extends('front.layouts.app') {{-- Content --}} @section('content')
@if (!empty($habitats))
{{__('Habitat Kategorisindeki Tüm Tespitleri Göster') }}
@component('front.components.determination_boxes', ['determinations' => $habitats, 'carousel_id' => 'habitats']) @endcomponent
@endif @switch($tab) @case('determinations') @component('front.components.city_show_determinations', ['city' => $city, 'searchStats' => $searchStats, 'determinations' => $determinations]) @endcomponent @break @case('determination') @component('front.components.city_show_determination', ['city' => $city, 'searchStats' => $searchStats]) @endcomponent @break @case('users') @component('front.components.city_show_users', ['city' => $city, 'searchStats' => $searchStats]) @endcomponent @break @case('species') @component('front.components.city_show_species', ['city' => $city, 'searchStats' => $searchStats]) @endcomponent @break @case('species-table') @component('front.components.city_show_species_table', ['city' => $city, 'species_all' => $species_all]) @endcomponent @break @default @component('front.components.city_show_determinations', ['city' => $city, 'searchStats' => $searchStats]) @endcomponent @endswitch @endsection @section('breadcrumbs') {{ Breadcrumbs::render('city.show', $city->title) }} @endsection