@extends('layouts/default') {{-- Page title --}} @section('title') Invoice @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Customer Enquiry

{{Session::get('company')}}

{{$voucherhead}}


Date From: 01-01-1970   To: 05-08-2026

@foreach($reports as $row) @endforeach
SI.No CE..# CE..Ref.# Customer Salesman Gross Amt. Discount VAT Amt. Net Total
{{$row->voucher_no}} {{ $row->voucher_no }} {{$row->reference_no}} {{$row->master_name}} {{$row->salesman}} {{number_format($row->total,2)}} {{number_format($row->discount,2)}} {{number_format($row->vat_amount,2)}} {{number_format($row->net_total,2)}}
{{$row->salesman}} Total: {{number_format($total_gross,2)}} {{number_format($discount,2)}} {{number_format($total_vat,2)}} {{number_format($total_net,2)}}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop