@extends('layouts.pdf.base') @section('pdf-title', 'Bank Reconciliation Summary') @section('pdf-subtitle') As of {{ now()->format('d M Y') }} @endsection @section('pdf-content')
| Account | Statement Balance | GL Balance | Difference |
|---|---|---|---|
| {{ $summary->account_name }} | {{ number_format($summary->statement, 2) }} | {{ number_format($summary->gl, 2) }} | {{ number_format($summary->difference, 2) }} |