@extends('layout.front.master') @section('content') @php $activeDemo = config('cd-system.theme.demo', 'default'); $pageTitle = config('site.modules.tokko.page_header.title', __('Propiedades')); $pageSubtitle = config('site.modules.tokko.page_header.subtitle', ''); $breadcrumbItems = [ ['label' => __('Inicio'), 'url' => route('front.homepage')], ['label' => $pageTitle, 'url' => null], ]; @endphp @include('modules.cd-base.frontend.partials.dynamic-header', [ 'pageTitle' => $pageTitle, 'pageLabel' => $pageTitle, 'pageBreadcrumb' => $breadcrumbItems, 'pageSubtitle' => $pageSubtitle, ]) {{-- Shop Section usando Porto shop component --}}
{{-- Sidebar Optimizado con Componente --}}
{{-- Products Grid usando Porto shop products --}}
@if(isset($message)) {{-- Error State --}}

{{ $message }}

Verifica la configuración de la API de Tokko o intenta más tarde.

Contactar Soporte
@elseif(isset($data['objects']) && count($data['objects']) > 0) {{-- Properties Grid Optimizado con Componentes --}}
@foreach($data['objects'] as $index => $property)
@endforeach
{{-- Pagination usando Porto pagination --}} @php $totalProperties = $data['meta']['total_count']; $perPage = 12; $lastPage = ceil($totalProperties / $perPage); @endphp @if($lastPage > 1)
@endif @else {{-- No Properties State --}}

No se encontraron propiedades

Lo sentimos, no hay propiedades que coincidan con tus criterios de búsqueda. Intenta ajustar los filtros o explorar otras opciones.

@endif
@endsection @section('scripts') @endsection