@extends('layouts.master') @section('title', 'Edit Payment Voucher | ') @section('content') @include('partials.header') @include('partials.sidebar') Edit Payment Voucher Edit your Payment Voucher details Payment @csrf @method('PUT') Voucher #: {{ $payment->Id }} Payment Mode: Cash / Bank Voucher Date: Remarks: Site: Payee Account Payer Account Entry Narration Amount @foreach($details as $index => $detail) @foreach($accounts as $acc) Account_ID == $detail->Payee_ID ? 'selected' : '' }}> {{ $acc->Account_Title }} @endforeach @foreach($payerAccounts as $payer) Account_ID == $detail->Payer_ID ? 'selected' : '' }}> {{ $payer->Account_Title }} @endforeach @endforeach @foreach($accounts as $acc) {{ $acc->Account_Title }} @endforeach @foreach($payerAccounts as $payer) {{ $payer->Account_Title }} @endforeach Update Voucher @endsection @section('scripts') @endsection
Edit your Payment Voucher details