@extends('layouts.master') @section('page_title', 'Summary Report') @section('title', 'Summary Report') @section('main_item', 'Reports') @section('sub_item', 'Summary Report') @section('content')
Total Orders: {{ $total_orders_count }} ₨ {{ number_format($total_orders_total, 2) }}
Pending Orders: {{ $pending_oders_count }} ₨ {{number_format($pending_oders_total,2)}}
Hold Orders: {{ $hold_oders_count }} ₨ {{ number_format($hold_oders_total, 2) }}
Cancel Orders: {{ $cancel_oders_count }} ₨ {{ number_format($cancel_oders_total, 2) }}
Confirm Orders: {{ $confirm_oders_count }} ₨ {{ number_format($confirm_oders_total, 2) }}
Not Confirm Orders: {{ $not_confirm_oders_count }} ₨ {{ number_format($not_confirm_oders_total, 2) }}
Dispatch Orders: {{ $dispatch_orders_count }} ₨ {{ number_format($dispatch_orders_total, 2) }}
Delivered Orders: {{ $delivered_orders_count }} ₨ {{ number_format($delivered_orders_total, 2) }}
Returned Orders: {{ $returned_orders_count }} ₨ {{ number_format($returned_orders_total, 2) }}
Total Delivered Sales: {{ number_format($total_sale, 2) }}
Total Courier Charge: {{ number_format($courier_cost, 2) }}
Actual Sale: {{ number_format($actual_sale, 2) }}
Total Online Payment: ₨ {{ number_format($total_payments, 2) }}
Total COD Payment: ₨ {{ number_format($total_COD_payments, 2) }}
Total Due Payment: ₨ {{ number_format($total_payments_due, 2) }}
Total Expenses: ₨ {{ number_format($total_expenses, 2) }}
{{--

Gross Profit : ₨. {{ number_format($gross_profit, 2) }}

(Total sale value - Item cost)


Net Profit : ₨. {{ number_format($net_profit, 2) }}

Gross Profit - (Total Courier Charge + Total Expenses )
--}} @endsection @section('scripts') @endsection