@extends('layouts/acc_layout') @section('title', '| Other Fund Transaction Report') @section('content') @include('successMsg')

Other Fund Transaction Report

@include('partials.reportHead.index')
@foreach ($otherTransactions as $otherTransaction)
Warning: Undefined variable $otherTransaction in /home/shikkhaplus/public_html/morning_bird_bk/resources/views/accounting/reports/otherFundTransactionReport/otherFundTransactionReport.blade.php on line 63

Warning: Attempt to read property "transactionAmount" on null in /home/shikkhaplus/public_html/morning_bird_bk/resources/views/accounting/reports/otherFundTransactionReport/otherFundTransactionReport.blade.php on line 63
@endforeach
SL# Branch Transaction
Code Name Date Time Narration Payer No Amount
{{ ++$no }} {{ $otherTransaction->branchCodeWith0 }} {{ $otherTransaction->branchName }} {{ date('d-m-Y', strtotime($otherTransaction->transactionDate)) }} {{ date("h:i:sa", strtotime($otherTransaction->transactionTime)) }} {{ $otherTransaction->memberCode }} {{ $otherTransaction->transactionId }} {{ $otherTransaction->payerNo }} {{ number_format($otherTransaction->transactionAmount) }}
Total: {{ number_format($total) }}
@endsection