Panel inmobiliario

{{ __('Dashboard') }}

Datos actualizados {{ $lastUpdated }}

Resumen operativo

Todo bajo control

Consulta el rendimiento del inventario, el contenido publicado y la actividad reciente de tu negocio.

Inventario

{{ number_format($propertyCount) }}

propiedades

Contenido

{{ number_format($publishedPostCount) }}

publicaciones activas

@foreach ([ ['label' => 'Propiedades', 'value' => number_format($propertyCount), 'detail' => is_null($propertyGrowth) ? 'Inventario nuevo este mes' : (($propertyGrowth >= 0 ? '+' : '') . $propertyGrowth . '% este mes'), 'icon' => 'fa-building', 'iconClass' => 'bg-[#e8f2fb] text-[#12365a]'], ['label' => 'Asesores activos', 'value' => number_format($advisorCount), 'detail' => 'equipo disponible', 'icon' => 'fa-user-tie', 'iconClass' => 'bg-[#f2f8e8] text-[#739f2b]'], ['label' => 'Publicaciones', 'value' => number_format($publishedPostCount), 'detail' => 'contenido publicado', 'icon' => 'fa-newspaper', 'iconClass' => 'bg-[#eef1f3] text-[#263247]'], ['label' => 'Comentarios', 'value' => number_format($commentCount), 'detail' => 'interacciones registradas', 'icon' => 'fa-comments', 'iconClass' => 'bg-[#fff7df] text-[#b47b00]'], ] as $metric)

{{ $metric['label'] }}

{{ $metric['value'] }}

{{ $metric['detail'] }}

@endforeach

Inventario incorporado

Propiedades por mes

@if (is_null($propertyGrowth)) Nuevo @else {{ $propertyGrowth >= 0 ? '+' : '' }}{{ $propertyGrowth }}% @endif
@php($maxMonthlyProperties = max(1, $monthlyProperties->max('count')))
@foreach ($monthlyProperties as $month)
{{ $month['count'] }}
{{ $month['label'] }}
@endforeach

Distribución

Por operación

@php($maxOperationProperties = max(1, $operationStats->max('properties_count') ?? 0)) @forelse ($operationStats as $operation)
{{ $operation->title }} {{ $operation->properties_count }}
@empty

Todavía no hay operaciones registradas.

@endforelse

Inventario reciente

Últimas propiedades

@forelse ($latestProperties as $property)

{{ $property->title ?: 'Propiedad sin título' }}

{{ $property->propertyType->title ?? 'Tipo no definido' }} · {{ $property->operation->title ?? 'Operación no definida' }}

{{ $property->created_at->format('d/m/Y') }}
@empty

Todavía no hay propiedades registradas.

@endforelse

Contenido reciente

Últimas publicaciones

@forelse ($latestPosts as $post)

{{ $post->title }}

{{ $post->category->name ?? 'Sin categoría' }}

{{ $post->status ? 'Publicado' : 'Borrador' }}
@empty

Todavía no hay publicaciones registradas.

@endforelse