<?php $__env->startSection('styles'); ?>
<link rel="stylesheet" href="<?php echo e(asset(asset_path('modules/ordermanage/css/style.css'))); ?>" />
<?php $__env->stopSection(); ?>
<?php $__env->startSection('mainContent'); ?>
<section class="admin-visitor-area up_st_admin_visitor">
<div class="container-fluid p-0">
<div class="row justify-content-center">
<div class="col-md-12 mb-20">
<div class="box_header_right">
<div class="float-lg-right float-none pos_tab_btn justify-content-end">
<ul class="nav nav_list" role="tablist">
<?php if(permissionCheck('pending_orders')): ?>
<li class="nav-item">
<a class="nav-link active show" href="#order_pending_data" role="tab" data-toggle="tab" id="1" aria-selected="true"><?php echo e(__('order.pending_orders')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('confirmed_orders')): ?>
<li class="nav-item">
<a class="nav-link" href="#order_confirmed_data" role="tab" data-toggle="tab" id="2" aria-selected="true"><?php echo e(__('order.confirmed_orders')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('completed_orders')): ?>
<li class="nav-item">
<a class="nav-link" href="#order_complete_data" role="tab" data-toggle="tab" id="3" aria-selected="true"><?php echo e(__('order.completed_orders')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('pending_payment_orders')): ?>
<li class="nav-item">
<a class="nav-link" href="#pending_payment_data" role="tab" data-toggle="tab" id="4" aria-selected="true"><?php echo e(__('order.pending_payment_orders')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('cancelled_orders')): ?>
<li class="nav-item">
<a class="nav-link" href="#cancelled_data" role="tab" data-toggle="tab" id="5" aria-selected="true"><?php echo e(__('order.cancelled_orders')); ?></a>
</li>
<?php endif; ?>
<?php if(permissionCheck('inhouse_orders')): ?>
<li class="nav-item">
<a class="nav-link" href="#inhouse_order_data" role="tab" data-toggle="tab" id="6" aria-selected="true"><?php echo e(__('order.inhouse_orders')); ?></a>
</li>
<?php endif; ?>
</ul>
</div>
</div>
</div>
<div class="col-xl-12">
<div class="white_box_30px mb_30">
<div class="tab-content">
<?php if(permissionCheck('pending_orders')): ?>
<div role="tabpanel" class="tab-pane fade active show" id="order_pending_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.pending_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="orderPendingTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(permissionCheck('confirmed_orders')): ?>
<div role="tabpanel" class="tab-pane fade" id="order_confirmed_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.confirmed_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="confirmedTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(permissionCheck('completed_orders')): ?>
<div role="tabpanel" class="tab-pane fade" id="order_complete_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.completed_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="completedTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(permissionCheck('pending_payment_orders')): ?>
<div role="tabpanel" class="tab-pane fade" id="pending_payment_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.pending_payment_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="pendingPaymentTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(permissionCheck('cancelled_orders')): ?>
<div role="tabpanel" class="tab-pane fade" id="cancelled_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.cancelled_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="canceledTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(permissionCheck('inhouse_orders')): ?>
<div role="tabpanel" class="tab-pane fade" id="inhouse_order_data">
<div class="box_header common_table_header ">
<div class="main-title d-md-flex">
<h3 class="mb-0 mr-30 mb_xs_15px mb_sm_20px"><?php echo e(__('order.inhouse_orders')); ?></h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<div class="" id="latest_order_div">
<table class="table" id="inhouseOrderTable">
<thead>
<tr>
<th><?php echo e(__('common.sl')); ?></th>
<th width="10%"><?php echo e(__('common.date')); ?></th>
<th><?php echo e(__('common.order_id')); ?></th>
<th><?php echo e(__('common.email')); ?></th>
<th><?php echo e(__('order.total_product_qty')); ?></th>
<th><?php echo e(__('common.total_amount')); ?></th>
<th><?php echo e(__('order.order_status')); ?></th>
<th><?php echo e(__('order.is_paid')); ?></th>
<th><?php echo e(__('common.action')); ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('scripts'); ?>
<script>
(function($){
"use strict";
$(document).ready(function(){
$('#orderPendingTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=pending'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
$('#pendingPaymentTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=pending_payment'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
$('#confirmedTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=confirmed'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
$('#completedTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=completed'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
$('#canceledTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=canceled'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
$('#inhouseOrderTable').DataTable({
processing: true,
serverSide: true,
"stateSave": true,
"ajax": ( {
url: "<?php echo e(route('order_manage.total_sales_get_data')); ?>" + '?table=inhouse'
}),
"initComplete":function(json){
},
columns: [
{ data: 'DT_RowIndex', name: 'id' },
{ data: 'date', name: 'date' },
{ data: 'order_number', name: 'order_number' },
{ data: 'email', name: 'email' },
{ data: 'total_qty', name: 'total_qty' },
{ data: 'total_amount', name: 'total_amount' },
{ data: 'order_status', name: 'order_status' },
{ data: 'is_paid', name: 'is_paid' },
{ data: 'action', name: 'action' }
],
bLengthChange: false,
"bDestroy": true,
language: {
search: "<i class='ti-search'></i>",
searchPlaceholder: trans('common.quick_search'),
paginate: {
next: "<i class='ti-arrow-right'></i>",
previous: "<i class='ti-arrow-left'></i>"
}
},
dom: 'Bfrtip',
buttons: [{
extend: 'copyHtml5',
text: '<i class="fa fa-files-o"></i>',
title: $("#header_title").text(),
titleAttr: 'Copy',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'excelHtml5',
text: '<i class="fa fa-file-excel-o"></i>',
titleAttr: 'Excel',
title: $("#header_title").text(),
margin: [10, 10, 10, 0],
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
},
{
extend: 'csvHtml5',
text: '<i class="fa fa-file-text-o"></i>',
titleAttr: 'CSV',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
}
},
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i>',
title: $("#header_title").text(),
titleAttr: 'PDF',
exportOptions: {
columns: ':visible',
columns: ':not(:last-child)',
},
pageSize: 'A4',
margin: [0, 0, 0, 0],
alignment: 'center',
header: true,
},
{
extend: 'print',
text: '<i class="fa fa-print"></i>',
titleAttr: 'Print',
title: $("#header_title").text(),
exportOptions: {
columns: ':not(:last-child)',
}
},
{
extend: 'colvis',
text: '<i class="fa fa-columns"></i>',
postfixButtons: ['colvisRestore']
}
],
columnDefs: [{
visible: false
}],
responsive: true,
});
});
})(jQuery);
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('backEnd.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/www.shooperm.com/Modules/OrderManage/Resources/views/order_manage/total_sales.blade.php ENDPATH**/ ?>