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