@extends('admin.index') @section('title') {{ translate("sales_reports") }} - @endsection @section('header') @endsection @section('content')

{{ translate("total_number_of_orders") }}

{{ $stats['total_sales'] }}

{{ translate("total_number_of_ordered_products") }}

{{ $stats['total_sales_product'] }}

{{ translate("number_of_products_pending_approval") }}

{{ $stats['total_pending_product'] }}

{{ translate("number_of_products_waiting_for_shipment") }}

{{ $stats['total_approved_cargo_waiting_product'] }}

{{ translate("number_of_products_in_shipment") }}

{{ $stats['total_in_cargo_product'] }}

{{ translate("number_of_completed_products") }}

{{ $stats['total_completed_product'] }}

{{ translate("estimated_total_earnings_of_weekly_orders") }}

@foreach (get_currencies() as $item) @endforeach
{{ translate("currency") }} {{ translate("total_of_orders") }}
{{ $item->name }} {{ $item->symbol }} {{ money($stats['money_total_weekly_sales'][$item->id] ?? 0) }}
@endsection @section('footer') @endsection