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

Advance Set

@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 }} 01-01-1970 {{ $receipts->debiter }} {{ $receipts->tr_description }} {{ $receipts->creditor }} {{ number_format($receipts->amount,2) }}

No matching records found
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop