@extends('layouts.app') @section('title', 'Monthly Summary Report') @section('content')
| Month | Income | Expenses | Net Profit/Loss | Transaction Count |
|---|---|---|---|---|
| {{ $data->month_name }} | LKR {{ number_format($data->income, 2) }} | LKR {{ number_format($data->expense, 2) }} | LKR {{ number_format($data->income - $data->expense, 2) }} | {{ $data->transaction_count }} |