@extends('reports.layouts.excel.main') @section('content')
@foreach ($data['ledger_data'] as $item) @endforeach
Date Note Debit Credit
{{$item->date}} {{$item->note}} {{bdt_format($item->debit)}} {{bdt_format($item->credit)}}
Total: {{bdt_format($data['ledger_summary']['total_debit'])}} {{bdt_format($data['ledger_summary']['total_credit'])}}
Total Due: {{bdt_format($data['ledger_summary']['total_due'])}}
@endsection