@extends('layouts.app') @section('content')
{{ __('VER PAGO DE TICKETS DE COMEDOR') }}
@php foreach ($abonado->ranchos as $rancho) { $documento_cliente = $rancho->documento_cliente; } $datos_cliente = $rancho->datos_cliente; @endphp
@if (count($abonado->ranchos) > 0) @foreach ($abonado->ranchos as $rancho) @endforeach
{{ __('ID') }} {{ __('DOCUMENTO TRABAJADOR') }} {{ __('DATOS TRABAJADOR') }} {{ __('CANTIDAD') }} {{ __('CANCELADO') }} {{ __('COMIDA') }} {{ __('LOTE') }} {{ __('FECHA CREACIÓN') }}
{{ $rancho->id }} @if ($rancho->documento_trabajador) {{ $rancho->documento_trabajador }} @else - @endif @if ($rancho->datos_trabajador) {{ $rancho->datos_trabajador }} @else - @endif {{ $rancho->cantidad }} {{ $rancho->cancelado }} {{ $rancho->comida->nombre }} {{ $rancho->lote }} {{ $rancho->created_at }}
@endif

Cantidad: {{ $sum_cantidad_total }}

IMPRIMIR
@push('js') @endpush @endsection