@extends('layouts.app') @section('content')
@include('layouts.alert')

{{ $lot->registration_number }}

@foreach ($orders as $index => $order) @endforeach
@csrf
Limpiar
# Cliente Servicio Método de aplicación Cantidad
{{ $index + 1 }} {{ $order->order->customer->name ?? 'N/A' }} {{ $order->service->name ?? 'N/A' }} {{ $order->appMethod->name ?? '-' }} {{ $order->amount ?? '-' }}
{{--
Mostrando {{ $orders->firstItem() }} - {{ $orders->lastItem() }} de {{ $orders->total() }} registros
--}}
@endsection