@extends('layouts.app') @section('title', 'Category Report') @section('content')
View statistics for categories and subcategories (Current Month: {{ now()->format('F Y') }})
| SL | Category Name | Description | Total Tickets | Solved Tickets | Pending Tickets |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $category['name'] }} | {{ $category['description'] ?? 'N/A' }} | {{ $category['ticket_count'] }} | {{ $category['solved_count'] }} | {{ $category['pending_count'] }} |
| SL | Sub Category Name | Category | Description | Total Tickets | Solved Tickets | Pending Tickets |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $subcategory['name'] }} | {{ $subcategory['category_name'] }} | {{ $subcategory['description'] ?? 'N/A' }} | {{ $subcategory['ticket_count'] }} | {{ $subcategory['solved_count'] }} | {{ $subcategory['pending_count'] }} |