@extends('layouts.master') @section('titel', 'Receipts | ') @section('content') @include('partials.header') @include('partials.sidebar') Receipt Table Receipt Receipt Table Create New Receipt ID Voucher Type Remarks Total Amount Date Action @foreach($receipts as $receipt) {{ $receipt->Id }} {{ $receipt->VoucherType }} {{ $receipt->Remarks }} {{ $receipt->totalAmount }} {{ $receipt->VoucherDate }} @csrf @method('DELETE') @endforeach @endsection @push('js') } @endpush