@extends('admin.layouts.master-soyuz') @section('title',__('Sales reports all products')) @section('body') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('Sales Report') }}
@csrf
@foreach($orders as $key => $row) @endforeach
# {{ __("Date") }} {{ __("Order ID") }} {{ __("Total Qty.") }} {{ __("Paid Currency") }} {{ __("Subtotal") }} {{ __("Total Shipping") }} {{ __("Handling Charges") }} {{ __("Total Gift charges.") }} {{ __("Total Tax") }} {{ __("Grand total") }}
{{ ++$key }} {{ date('d-m-Y',strtotime($row->created_at)) }} {{ $row->order_id }} {{ $row->qty_total }} {{ $row->paid_in_currency }} {{ sprintf('%.2f',$row->order_total - $row->tax_amount - $row->shipping) }} {{ $row->shipping }} {{ $row->handlingcharge }} {{ $row->gift_charge }} {{ $row->tax_amount }} {{ $row->order_total + $row->handlingcharge + $row->gift_charge }}
@endsection