@extends('layouts.app-admin') @section('title', 'Financial Report') @section('content')
Top Earning Shops (Today)
Top Earning Shops
@if(count($table_this_week)) @foreach($table_this_week as $tKey => $tValue) @endforeach @else @endif
# Shop Revenue
{{$tKey+1}} {{$tValue->name}} {{" $ " . number_format($tValue->total, 2)}}
{{trans('admin_default.no_records')}}
Revenue list

@if(count($revenueList)) @foreach($revenueList as $rKey => $rValue) @endforeach @else @endif
# Shop Name Revenue
{{$rKey+1}} {{$rValue->name}} {{" $ " . number_format($rValue->total, 2)}}
{{trans('admin_default.no_records')}}
@endsection