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

Other Receipt

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

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

@endif

Voucher Entry List

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