@extends('layouts.app') @section('title', 'Category Report') @section('content')
| Category | Transaction Count | Total Amount | Average Amount | Percentage |
|---|---|---|---|---|
| {{ $category->category }} | {{ $category->transaction_count }} | LKR {{ number_format($category->total_amount, 2) }} | LKR {{ number_format($category->total_amount / $category->transaction_count, 2) }} |
{{ number_format(($category->total_amount / $categories->sum('total_amount')) * 100, 1) }}%
|
| No categories found for the selected criteria. | ||||