@extends('layouts.app-admin')
@section('title', 'Membership Cards Report')
@section('content')
Top Shop With Most Issue Cards (Today)
Top Shops With Most Issue Cards
| # |
Shop |
Issue Cards |
@if(count($membershipCardsTable))
@foreach($membershipCardsTable as $Key => $Value)
| {{$Key+1}} |
{{$Value->name}} |
{{$Value->counts}} |
@endforeach
@else
| {{trans('admin_default.no_records')}} |
@endif
Issue Cards By Shops
| # |
Shop Name |
# Issue Cards |
@if(count($membershipCardsList))
@foreach($membershipCardsList as $Key => $Value)
| {{$Key+1}} |
{{$Value->name}} |
{{$Value->counts}} |
@endforeach
@else
| {{trans('admin_default.no_records')}} |
@endif
@endsection