@extends('layouts.master_app') @section('title') Reporte de venta | {{$company_product->name}} @endsection @section('menu_tickets', 'here show') @section('css') @endsection @section('content')

Reporte de venta: {{$company_product->name}} {{ $start }} - {{ $end }}

Selected
@include('partials.success') @foreach( $sales as $item ) @endforeach
Fecha Pedido Cliente Cantidad Precio unitario Total
{{ $item->date }} {{ $item->folio }} {{ $item->proposal->contact->person->fullname }} {{ $item->quantity }} KG ${{number_format($item->unit_price,2) }} ${{number_format( $item->total,2) }}
{{ $total_quantity }} ${{number_format( $total_sale,2) }}
@endsection @section('js') @endsection