@extends('layouts.app') @section('content')
{{ _lang('Date') }} | {{ _lang('Orders') }} | {{ _lang('Products') }} | {{ _lang('Subtotal') }} | {{ _lang('Shipping') }} | {{ _lang('Discount') }} | {{ _lang('Total') }} | @if(isset($report_data)) @foreach($report_data as $report)
---|---|---|---|---|---|---|
{{ $report->created_at }} | {{ $report->total_orders }} | {{ $report->total_products }} | {!! xss_clean(decimalPlace($report->sub_total, $currency)) !!} | {!! xss_clean(decimalPlace($report->shipping_cost, $currency)) !!} | {!! xss_clean(decimalPlace($report->discount, $currency)) !!} | {!! xss_clean(decimalPlace($report->total, $currency)) !!} |