@extends('layouts.admin') @section('styles') @endsection @section('content')

Venta / Recibo #{{$recibo->id}}

Cliente: {{$recibo->nombre}}
Nit: {{$recibo->nit}}
Direccion: {{$recibo->direccion}}
Total de Factura: Q. {{number_format($recibo->total, 2)}}

Ir A ventas
@foreach($deuda as $venta) @endforeach
# Articulo Cantidad P. Unitario Total
{{$venta->id}} {{$venta->articulo->nombre}} {{$venta->cantidad}} Q. {{number_format($venta->total / $venta->cantidad, 2)}} Q. {{number_format($venta->total, 2)}}
@csrf @method('DELETE')

@endsection @section('scripts') @endsection