@extends('dashboard.layouts.app') @section('title', __('dashboard.Sales Statistics')) @section('page_heading', __('dashboard.Sales Statistics')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Sales Statistics') }}

{{ __('dashboard.Reset') }}
@foreach ($chartData['labels'] as $index => $date) @endforeach
{{ __('dashboard.Date') }} {{ __('dashboard.Sales') }} {{ __('dashboard.Returns') }}
{{ $date }} {{ number_format($chartData['sales'][$index], 2) }} {{ number_format($chartData['returns'][$index], 2) }}
@endsection @section('scripts') @endsection