@extends('layouts.app') @section('content') @section('css') @endsection
| Date | Time | Bill No | User | Value | Discount | Net Value | Tax | Value with Tax | Order Type | MOP | Status | Customer |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{date("d-M-Y", strtotime($row->date))}} | {{date("h:i A", strtotime($row->bill_time))}} | {{$row->bill_no}} | {{$row->cashier}} | {{$row->value}} | {{$row->discount}} | {{$row->net_value}} | {{$row->tax}} | {{$row->value+$row->tax}} | {{$row->order_type}} | {{$row->mop}} | @if($row->bill_status == 0) Placed @elseif($row->bill_status == 1) Accept @elseif($row->bill_status == 2) Decline @elseif($row->bill_status == 3) Pending @elseif($row->bill_status == 4) Delivered @elseif($row->bill_status == 5) Paid @endif | {{ucwords($row->name)}} |
| {{$r1_total_value}} | {{$r1_total_discount}} | {{$r1_total_net_value}} | {{$r1_total_tax}} | {{$r1_total_tax_and_value}} |
| Date | User | Bill No | Item Category | Item Name | Qty | Value | Discount | Net Value | Order Type | MOP |
|---|---|---|---|---|---|---|---|---|---|---|
| {{date("d-M-Y", strtotime($row->date))}} | {{$row->cashier}} | {{$row->bill_no}} | {{$row->item_category}} | {{$row->item_name}} | {{$row->quantity}} | {{$row->value}} | {{$row->discount}} | {{$row->net_value}} | {{$row->order_type}} | {{$row->mop}} |
| {{$r2_total_quantity}} | {{$r2_total_value}} | {{$r2_total_discount}} | {{$r2_total_net_value}} |
| Order Type | Sale | Discount | Tax | Delivery Charges | Net Sale |
|---|---|---|---|---|---|
| {{ $row->order_type }} | {{ round($row->sale) }} | {{ round($row->discount) }} | {{ round($row->tax) }} | {{ round($row->delivery_charges) }} | {{ round($row->netsale) }} |
| {{ round($ot_total_sale) }} | {{ round($ot_total_discount) }} | {{ round($ot_total_tax) }} | {{ round($ot_total_delivery_charges) }} | {{ round($ot_total_netsale) }} |
| Payment Type | Sale | Discount | Tax | Delivery Charges | Net Sale |
|---|---|---|---|---|---|
| {{ $row->payment_type }} | {{ round($row->sale) }} | {{ round($row->discount) }} | {{ round($row->tax) }} | {{ round($row->delivery_charges) }} | {{ round($row->netsale) }} |
| {{ round($pm_total_sale) }} | {{ round($pm_total_discount) }} | {{ round($pm_total_tax) }} | {{ round($pm_total_delivery_charges) }} | {{ round($pm_total_netsale) }} |
| Platform Name | Sale | Discount | Tax | Delivery Charges | Net Sale |
|---|---|---|---|---|---|
| {{ $row->platform }} | {{ round($row->sale) }} | {{ round($row->discount) }} | {{ round($row->tax) }} | {{ round($row->delivery_charges) }} | {{ round($row->netsale) }} |
| {{ round($pf_total_sale) }} | {{ round($pf_total_discount) }} | {{ round($pf_total_tax) }} | {{ round($pf_total_delivery_charges) }} | {{ round($pf_total_netsale) }} |