@extends('layouts.app-admin') @section('title', 'Transaction Report') @section('content')
Top Transaction Processing Shops (Today)
Top Transaction Processing Shops
@if(count($tableTransaction)) @foreach($tableTransaction as $tKey => $tValue) @endforeach @else @endif
# Shop # Transaction
{{$tKey+1}} {{$tValue->name}} {{$tValue->counts}}
{{trans('admin_default.no_records')}}
Transaction list:

@if(count($transactionList)) @foreach($transactionList as $tKey => $tValue) @endforeach @else @endif
# Shop Name # Transaction
{{$tKey+1}} {{$tValue->name}} {{$tValue->counts}}
{{trans('admin_default.no_records')}}
@endsection