@extends('layouts.app') @section('title') {{'Received Voucher Details'}} @endsection @section('content') @include('layouts.numbertowords')
@if ($stock_out->status == 0 && Auth::user()->parent_id == "0") Confirm @endif @if ($stock_out->status == 1 && $stock_out->db_types == "Payment" && Auth::user()->parent_id == "0") Payment Voucher @endif @if ($stock_out->status == 1 && $stock_out->db_types == "Received" && Auth::user()->parent_id == "0") Money Receipt Received Voucher @endif
| SL No. | Date | ID | Party Name | Description Type | Amount | Cash/Cheque | PO/DD/TT/CQ No. | Cheque date | Remarks | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{$i}} | {!! date('d-m-Y', strtotime($row->txn_date))!!} | {!! $row->supplier_id !!} | {!! $row->name !!} | {!! $row->values !!} | {!! number_format($row->amount,2) !!} | {!! $row->cash_cheque !!} | {!! $row->po_dd_tt_cq !!} | @if($row->cheque_date!=''){!! date('d-M-Y', strtotime($row->cheque_date)) !!} | @else@endif | {!! $row->remarks !!} |
| Grand Total = | {!! number_format($total_amount,2) !!} | |||||||||