@extends('layouts/acc_layout') @section('title', '| VAT Register') @section('content')

VAT PAYMENT LIST

@php $count=0; @endphp @foreach($paymentLists as $paymentList) @endforeach
SL# Payment Date Expense Information Deposite Information Bill Amount VAT Rate (%) VAT Amount
Voucher Date Voucher No A/C Head Bank Name Chalan No
{{++$count}} {{Carbon::parse($paymentList->paymentDate)->format('d-m-Y')}} {{Carbon::parse($paymentList->voucherDate)->format('d-m-Y')}} {{$paymentList->voucherNo}} {{$paymentList->ledger}} {{$paymentList->bankName}} {{$paymentList->chalanNo}} {{$paymentList->billAmount}} {{$paymentList->vatInterestRate}} {{$paymentList->vatAmount}}
@endsection