@extends('layouts.master') @section('content')

Overview dashboard

Total Orders

{{$data['total_orders']}}

Completed

{{$data['total_delivered_orders']}}

Total Customers

{{$data['total_customers']}}

Increased since yesterday

{{$data['yesterday_customers']}}

Revenue

£{{$data['revenue']}}

Increased since yesterday

£{{$data['yesterday_revenue']}}

Cancelled Orders

{{$data['cancelled_orders']}}

Increased since yesterday

{{$data['yesterday_cancelled_orders']}}

Website views analytics

Most Valuable Customers

@foreach($data['vipcustomers'] as $vipcustomer) @endforeach
Customer Name Phone
{{ $vipcustomer->customer_name }} {{ $vipcustomer->customer_phone }}
@stop @section('scripts') @stop