@extends('layouts.master') @section('titel', 'Receipts | ') @section('content') @include('partials.header') @include('partials.sidebar')

Receipt Table

Create New Receipt
@foreach($receipts as $receipt) @endforeach
ID Voucher Type Remarks Total Amount Date Action
{{ $receipt->Id }} {{ $receipt->VoucherType }} {{ $receipt->Remarks }} {{ $receipt->totalAmount }} {{ $receipt->VoucherDate }}
@endsection @push('js') } @endpush