@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Other Payments

@if(Session::has('message'))

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

@endif

Voucher Entry List

@foreach($payments as $payment) @endforeach @if (count($payments) === 0) @endif
Voucher No Voucher Type Date Credit Account Description Customer Account Amount
{{ $payment->voucher_no }} {{ $payment->voucher_type }} {{ date('d-m-Y',strtotime($payment->voucher_date)) }} {{ $payment->creditor }} {{ $payment->description }} {{ $payment->debitor }} {{ number_format($payment->amount,2) }}
No matching records found
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop