{{-- 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.country_show_determinations', ['country' => $country, 'searchStats' => $searchStats, 'determinations' => $determinations]) @endcomponent @break @case('determination') @component('front.components.country_show_determination', ['country' => $country, 'searchStats' => $searchStats]) @endcomponent @break @case('users') @component('front.components.country_show_users', ['country' => $country, 'searchStats' => $searchStats]) @endcomponent @break @case('species') @component('front.components.country_show_species', ['country' => $country, 'searchStats' => $searchStats]) @endcomponent @break @case('species-table') @component('front.components.country_show_species_table', ['country' => $country, 'species_all' => $species_all]) @endcomponent @break @default @component('front.components.country_show_determinations', ['country' => $country, 'searchStats' => $searchStats]) @endcomponent @endswitch @endsection @section('breadcrumbs') {{ Breadcrumbs::render('country.show', $country->title) }} @endsection