@extends('layouts.admin') @section('title', 'POS Report') @section('page-title', 'POS Sales Report') @section('page-subtitle', 'Mini mart revenue by period') @section('content')
Total Revenue
₦{{ number_format($totalRevenue) }}
Total Transactions
{{ $totalTransactions }}
| Reference | Customer | Total | Payment | Cashier | Date | Items |
|---|---|---|---|---|---|---|
| {{ $sale->reference }} | {{ $sale->customer_name }} | ₦{{ number_format($sale->total_amount) }} | {{ str_replace('_', ' ', $sale->payment_method) }} | {{ $sale->cashier_name }} | {{ \Carbon\Carbon::parse($sale->sale_date)->format('d M Y') }} | {{ $sale->items->count() }} |
| No sales for this period. | ||||||