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

Today

@foreach ($sortedTodays as $today_key=>$sortedToday)
Generic placeholder image
₹ {{$sortedToday->total_commission_sum}}
{{$sortedToday->user_name}}
@endforeach
--}}

Last 7 Days

@foreach ($sortedWeeks as $week_key=>$sortedWeek)
Generic placeholder image
₹ {{$sortedWeek->total_commission_sum}}
{{$sortedWeek->user_name}}
@endforeach

Last 30 Days

@foreach ($sortedMonths as $month_key=>$sortedMonth)
Generic placeholder image
₹ {{$sortedMonth->total_commission_sum}}
{{$sortedMonth->user_name}}
@endforeach

All Time

@foreach ($sortedAlls as $all_key=>$sortedAll)
Generic placeholder image
₹ {{$sortedAll->total_commission_sum}}
{{$sortedAll->user_name}}
@endforeach
@endsection