@extends('layouts.merchant-backend-layout') @section('content')

Welcome to Your Dashboard

Top 10 Visitors - upto 30th April,2018

@if(count($totalvisit) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $totalvisit as $tot ) @endforeach
Name Mobile Number Total Visits
{{ $tot->name }} {{ $tot->mobile }} {{ $tot->twelve_month }}
@endif

Top 10 Spenders - upto 30th April,2018

@if(count($totalbilling) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $totalbilling as $tot1 ) @endforeach
Name Mobile Number Total Spend
{{ $tot1->name }} {{ $tot1->mobile }} {{ $tot1->twelve_month }}
@endif

@section('scripts') @stop @stop