@push('title', __('Rare values'))
@if(isset($statistics))
💰

{{ __('Rare Statistics') }}

{{ __('Overview of rare values on :hotel', ['hotel' => setting('hotel_name')]) }}

{{ $statistics['total_categories'] }}
{{ __('Categories') }}
{{ $statistics['total_rares'] }}
{{ __('Total Rares') }}
{{ round($statistics['average_rares_per_category']) }}
{{ __('Avg per Category') }}
{{ $statistics['most_valuable_category'] }}
{{ __('Top Category') }}
@endif @if(isset($searchTerm))
🔍

{{ __('Search Results') }}

{{ __('Showing results for: :term', ['term' => $searchTerm]) }}

{{ __('Found :count categories', ['count' => $categories->count()]) }}

@endif @if(isset($category))

{{ $category->name }}

{{ __('All :count rares in :category', ['count' => $category->furniture->count(), 'category' => $category->name]) }}

@elseif(isset($categories) && $categories instanceof \Illuminate\Database\Eloquent\Collection) @forelse($categories as $cat)

{{ $cat->name }}

{{ __(':count rares', ['count' => $cat->furniture->count()]) }}

@foreach($cat->furniture->take(6) as $rare) @endforeach
@if($cat->furniture->count() > 6) @endif
@empty
💰

{{ __('Rare values') }}

{{ __('Get an overview of all of the rares on :hotel', ['hotel' => setting('hotel_name')]) }}

{{ __('We currently have no rares listed here') }}

@endforelse @endif
🔍

{{ __('Search Rares') }}

{{ __('Find rares quickly') }}

@csrf
@if(isset($searchTerm)) @endif
@if (setting('google_recaptcha_enabled'))
@endif @if (setting('cloudflare_turnstile_enabled')) @endif @if(isset($statistics))

{{ __('Searching through :total rares', ['total' => $statistics['total_rares']]) }}

@endif
📦

{{ __('Categories') }}

{{ __(':count categories', ['count' => $categoriesNav->count() ?? 0]) }}