@extends('admin.layout') @section('content')

Sales Summary

Overview of Latest Month
{!! Form::hidden('reportBase', $result['reportBase'] , array('id'=>'reportBase')) !!}

$6,890.68

Current Month Earnings

1,540

Current Month Sales
Last Month Summary

{{ trans('labels.sales') }}

New Orders

  {{ $result['total_orders'] }}

Out of Stock

  {{ $result['outOfStock'] }}

User Registration

  {{ $result['totalCustomers'] }}

Total Products

  {{ $result['totalProducts'] }}

Most Popular

@foreach($result['recentProducts'] as $recentProducts) @endforeach
Image Products Name Price
user
{{ $recentProducts->products_name }} ${{ floatval($recentProducts->products_price) }}

Order Status Chart

{{ $result['compeleted_orders'] }}

completed

{{ $result['pending_orders'] }}

Pending

{{ $result['inprocess'] }}

InProgress

Revenue Statistics

$351

Jan 10 - Jan 20

Page Views

6548

Bounce Rate

56.33%

Total Bounce

NEW ORDERS

@if(count($result['orders'])>0) @foreach($result['orders'] as $total_orders) @foreach($total_orders as $key=>$orders) @if($key<=10) @endif @endforeach @endforeach @else @endif
Order Id Date Customer Name Customer Email Total Price Status Action
{{ $orders->orders_id }} 1970-01-01 {{ $orders->customers_name }} {{ $orders->customers_email_address }} ${{ floatval($orders->total_price) }} @if($orders->orders_status_id==1) @elseif($orders->orders_status_id==2) @elseif($orders->orders_status_id==3) @else @endif {{ $orders->orders_status }} Views
{{ trans('labels.noOrderPlaced') }}
@endsection