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

Welcome to Your Dashboard

Total Members: {{$data['cards']}}

New Members Joined in the Last 30 Days: {{$data['customer']}}

User Image

@if($loyalty->loyalty_type==2) Total Credits Given: @else Total Stamps Given: @endif {{number_format($data['total'])}}

User Image

@if($loyalty->loyalty_type==2) Total Credits Redeemed: @else Total Stamps Redeemed: @endif{{number_format($data['dif'])}}

User Image

Total Rewards Verified: {{$data['rewards']}}

User Image

Top 10 Visitors - upto 31st March,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 31st March,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