@extends('layouts/default') @section('title') PDC Issued Report @parent @stop @section('header_styles') @stop @section('content')

PDC Issued Report

{{ Session::get('company') }}

{{ $voucherhead ?? 'PDC Issued Report' }}


@foreach($reports as $key => $rows) @foreach($rows as $row) @if($row->cheque_no != '' && $row->code != '') @endif @endforeach @endforeach
SI.# Cheque Date Cheque No. Bank Voucher No. Voucher Date Party Name Amount
{{ $i }} {{ date('d-m-Y', strtotime($row->cheque_date)) }} {{ $row->cheque_no }} {{ $row->code }} {{ $row->voucher_no }} {{ date('d-m-Y', strtotime($row->voucher_date)) }} {{ $row->supplier }} {{ number_format($row->amount, 2) }}
Total {{ $monthName }} {{ $yearNum }}: {{ number_format($mtotal, 2) }}
Net Total: {{ number_format($total, 2) }}
@include('layouts.right_sidebar') @stop @section('footer_scripts') @stop