@extends('layouts.app') @section('content')

{{$customer_total->count()}}

Customers

{{$orders_total->count()}}

Orders

@convert($total_orders)

Revenue

{{$products->count()}}

Products

Walk-In Customer Reviews
PIZZAMAN CLASSIFICATION
@foreach($remark_pizzaman as $remark) @endforeach
# Pizzaman Classification Total Count Action
{{$loop->iteration}} {{$remark->remark_pizzaman}} {{$remark->total_class}} view
CHICKENMAN CLASSIFICATION
@foreach($remark_chickenman as $remark) @endforeach
# Chickenman Classification Total Count Action
{{$loop->iteration}} {{$remark->remark_chickenman}} {{$remark->total_class}} view
Review Category Count
@foreach( $remark_category as $remark_category) Pizzas

{{$remark_category->total_remarks}}

{{$remark_category->category}}

@endforeach
Top Customers
@foreach($top_customers as $customer)
Agent
{{$customer->name}}
Accu. Purchases: {{empty($app->currency) ? "GHS" : $app->currency}}@convert($customer -> total)
Rank #{{$loop->iteration}} | view Transactions
@endforeach
Reviews
@endsection