@include('pdf.styles') @include('pdf.partials.header-pdf', ['empresa' => $empresa, 'title' => 'REPORTE DE CLIENTES | '. $empresa->name])
@php $tiposPollo = \App\Models\TipoPollo::getAll(); @endphp @foreach($tiposPollo as $tipo) @endforeach @foreach ($records as $cliente) @php // Obtener precios dinĂ¡micamente por tipo de pollo $preciosPorTipo = $cliente->getPreciosPorTipoPollo(1); @endphp @foreach($preciosPorTipo as $precioData) @endforeach @endforeach
# DOCUMENTO RAZON SOCIAL | CLIENTE CELULARPrecio {{ $tipo->descripcion }}
{{ $cliente->id }} {{ $cliente->documento }} {{ $cliente->razon_social }} {{ $cliente->celular }} @if($precioData['tiene_precio']) {{ number_format($precioData['precio'], 2) }} @else — @endif