@extends('admin.layouts.app') @section('content')

Today

@foreach ($today_leaderboards as $today_key=>$today_leaderboard)
Generic placeholder image
₹ {{round($today_leaderboard['total_commission'])}}
{{$today_leaderboard['user']['name']}}
@endforeach

Last 7 Days

@foreach ($last_week_leaderboards as $week_key=>$last_week_leaderboard)
Generic placeholder image
₹ {{round($last_week_leaderboard['total_commission'])}}
{{$last_week_leaderboard['user']['name']}}
@endforeach

Last 30 Days

@foreach ($last_month_leaderboards as $month_key=>$last_month_leaderboard)
Generic placeholder image
₹ {{round($last_month_leaderboard['total_commission'])}}
{{$last_month_leaderboard['user']['name']}}
@endforeach

All Time

@foreach ($all_time_leaderboards as $all_key=>$all_time_leaderboard)
Generic placeholder image
₹ {{round($all_time_leaderboard['total_commission'])}}
{{$all_time_leaderboard['user']['name']}}
@endforeach
@endsection