@extends('layouts.app') @section('content')
{{ __('TODAS LAS OPERACIONES REGISTRADAS') }} {{ __('CREAR NUEVO ADELANTOS') }}
@if (count($adelantos) > 0) @foreach ($adelantos as $adelanto) @endforeach @else @endif
{{ __('ID') }} {{ __('FECHA CREACION') }} {{ __('FACTURA') }} {{ __('CLIENTE') }} {{ __('MONTO') }} {{ __('ACCION') }}
{{ $adelanto->id }} {{ ($adelanto->created_at)->format('d/m/Y - H:i:s') }} {{ $adelanto->nrofactura}} {{ $adelanto->cliente->datos_cliente }} {{ $adelanto->total}} {{ __('VER') }} {{ __('EDITAR') }}
@csrf @method('DELETE')
{{ __('No hay datos disponibles') }}
@push('js') @endpush @endsection