@extends('layouts.panel') @section('content')
Ocupación por Sección
@foreach ($secciones as $seccion) @php $total = $totalPorSeccion[$seccion] ?? 0; $vendidas = $vendidaPorSeccion[$seccion] ?? 0; $disponibles = $total - $vendidas; $porcentaje = $total > 0 ? round(($vendidas / $total) * 100) : 0; @endphp
{{ $seccion }} {{ $porcentaje }}%
{{ $vendidas }} Vendidos
{{ $disponibles }} Disponibles
{{ $total }} Total
@if ($vendidas > 0) @endif
@endforeach
@push('scripts') @endpush @endsection