@extends('layouts.app') @section('content')
@if(session('status'))
{{session('status')}}
@endif

@if($ventas->count() > 0)
@foreach($ventas as $venta) @endforeach
ID Total N° Productos Usuario Fecha ID cierre Acciones
#{{$venta->id}} $ {{number_format($venta->total)}} {{$venta->number_items()}}
{{$venta->user->name}}
{{date_format(date_create($venta->created_at), 'd/m/Y h:i A')}} @if($venta->id_cierre != null) #{{$venta->id_cierre}} @else N/A @endif
@if($venta->id_cierre == null && Auth::user()->is_admin == "Si") @endif
{{$ventas->appends(['search' => $search])->links()}}
@else
No hay ventas registradas.

@endif
@endsection @section('scripts') @endsection