@extends('layouts.admin.master') @section('title', 'Sale Report') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
{{ $reports['branch'] }} {{ $reports['dates'] }} |
|||||||||
---|---|---|---|---|---|---|---|---|---|
{{ $customerName }} | |||||||||
Inv Date | Inv No | Customer | Place of Supply | Driver | Vehicle No | Item Name | Price | Quantity | Total Amount |
{{ date('d-m-Y', strtotime($sale->sale->sale_date)) }} | {{ $sale->sale->invoice_no }} | {{ $sale->sale->customer->name }} | {{ (!is_null($placeName))?$placeName:'' }} | {{ (!is_null($driverName))?$driverName:'' }} | {{ (!is_null($regno))?$regno:'' }} | {{ $sale->product->name }} | {{ round((($sale->taxable_amount + $total_tax) / $sale->quantity), 2) }} | {{ round($sale->quantity, 2) }} | {{ round($sale->item_total, 2) }} |