@extends('layouts.app') @section('title', config('museum.name', 'Museum Audioguide')) @section('content') {{-- Hero Section --}}
{{-- Decorative pattern --}}
{{-- Text column --}}
{{-- Headphones icon --}}

@switch($idioma) @case('es') Audioguias @break @case('en') Audio Guides @break @case('fr') Audioguides @break @default Audioguies @endswitch {{ config('museum.institution', '') }}

@switch($idioma) @case('es') Descubre el patrimonio a traves de audioguias interactivas @break @case('en') Discover the heritage through interactive audio guides @break @case('fr') Decouvrez le patrimoine grace aux audioguides interactifs @break @default Descobreix el patrimoni a traves d'audioguies interactives @endswitch

{{-- Stats badges --}}
{{ $exposicions->count() }} @switch($idioma) @case('es') exposiciones @break @case('en') exhibitions @break @case('fr') expositions @break @default exposicions @endswitch
{{ $totalPeces }} @switch($idioma) @case('es') espacios @break @case('en') spaces @break @case('fr') espaces @break @default espais @endswitch
4 @switch($idioma) @case('es') idiomas @break @case('en') languages @break @case('fr') langues @break @default idiomes @endswitch
{{-- Decorative illustration (desktop only) --}}
{{-- Wave transition --}}
{{-- Exhibitions Section --}}
@if($exposicions->isEmpty())

@switch($idioma) @case('es') No hay exposiciones disponibles en este momento @break @case('en') No exhibitions available at this time @break @case('fr') Aucune exposition disponible pour le moment @break @default No hi ha exposicions disponibles en aquest moment @endswitch

@else {{-- Section header --}}

@switch($idioma) @case('es') Exposiciones @break @case('en') Exhibitions @break @case('fr') Expositions @break @default Exposicions @endswitch

@foreach($exposicions as $exposicio) @include('components.exhibit-card', ['exposicio' => $exposicio]) @endforeach
@endif
@endsection