@extends('adminlte::page') @section('title', config('app.name') . ' - Revalidación') @section('content_header')

Revalidación

@stop @section('content')

Información

Cliente {{ $revalidacion->cliente->nombre_comercial ?? $revalidacion->cliente->razon_social }}
Serie {{ $revalidacion->serie_orden }}
Fecha Revalidación {{ $revalidacion->fecha_revalidacion ? $revalidacion->fecha_revalidacion->format('d/m/Y') : '' }}
Estado {{ $revalidacion->estado ? 'Registrado' : 'Anulado' }}

Pesos

Peso Total Bruto
{{ number_format($revalidacion->peso_total_bruto, 2) }} kg
Tara
{{ number_format($revalidacion->tara, 2) }} kg
Jabas
{{ $revalidacion->cantidad_jabas }}
Peso Total Neto
{{ number_format($revalidacion->peso_total_neto, 2) }} kg

Detalles

@forelse($revalidacion->detalles as $index => $detalle) @empty @endforelse
# Presentación Tipo Cant. Pollos Jabas Peso Bruto Tara Peso Neto Promedio
{{ $index + 1 }} {{ $detalle->presentacionPollo->descripcion ?? 'N/A' }} {{ $detalle->tipoPollo->descripcion ?? 'N/A' }} {{ $detalle->cantidad_pollos }} {{ $detalle->cantidad_jabas }} {{ number_format($detalle->peso_bruto, 2) }} kg {{ number_format($detalle->tara, 2) }} kg {{ number_format($detalle->peso_neto, 2) }} kg {{ $detalle->peso_promedio ? number_format($detalle->peso_promedio, 2) : '-' }}
No hay detalles
TOTALES: {{ $revalidacion->cantidad_pollos }} {{ $revalidacion->cantidad_jabas }} {{ number_format($revalidacion->peso_total_bruto, 2) }} kg {{ number_format($revalidacion->tara, 2) }} kg {{ number_format($revalidacion->peso_total_neto, 2) }} kg
@stop