@extends('layouts.frontpages') @section('content') @include('partials.header')
@include('partials.banner-user')


{{-- --}}

RESUMEN DE COMPRAS

@foreach ($sales as $item) @endforeach
No. Factura Valor Fecha Factura Tienda Fecha creación
{{ $item->code }} $ {{ number_format($item->total, 0, ',', '.') }} {{ $item->date }} {{ $item->shop->name }} {{ $item->created_at }}
{{ $sales->links() }}

@include('partials.footer') @stop