@extends('admin.layouts.app') @section('title', 'Transaction Report') @push('styles') @endpush @section('container')
| Date | Type | Account Head | Note | Amount |
|---|---|---|---|---|
| {{ $data->date }} | @if($data->transaction_type == 1) Income @else Expense @endif | {{ $data->accountHeadType->name??'' }} | {{ $data->note }} | {{ number_format($data->amount, 2) }} |
| Total | {{ number_format($total, 2) }} | |||