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