@extends('layouts.app') @section('content')
{{ __('TODAS LAS OPERACIONES REGISTRADAS') }} {{ __('CREAR NUEVO LIQUIDACIONES') }}
@if (count($liquidaciones) > 0) @foreach ($liquidaciones as $liquidacion) @endforeach @else @endif
{{ __('ID') }} {{ __('MUESTRA') }} {{ __('CLIENTE') }} {{ __('EMPRESA') }} {{ __('PESO') }} {{ __('LOTE') }} {{ __('ESTADO') }} {{ __('TOTAL') }} {{ __('CREADO POR') }} {{ __('CIERRE FINAL') }} {{ __('ACCIONES') }}
{{ $liquidacion->id }} {{ $liquidacion->muestra->codigo }} {{ $liquidacion->cliente->datos_cliente }} {{ $liquidacion->cliente->razon_social }} {{ $liquidacion->peso }} {{ $liquidacion->lote }} {{ $liquidacion->estado }} {{ $liquidacion->total }} {{ $liquidacion->creator->name ?? 'N/A' }} ({{ $liquidacion->created_at->format('d/m/Y - H:i:s') }}) {{ $liquidacion->lastEditor->name ?? 'N/A'}} ({{ $liquidacion->updated_at->format('d/m/Y - H:i:s') }}) {{ __('VER') }} @if ($liquidacion->estado !== 'CIERRE' && $liquidacion->estado !== 'PROVISIONAL')
@csrf
@endif {{ __('EDITAR') }} {{ __('IMPRIMIR') }}
@csrf @method('DELETE')
{{ __('No hay datos disponibles') }}
@push('js') @endpush @endsection