@extends('admin.layout.master') @section('custom_style') @endsection @section('content') @include('flash-message')
@if ($errors->any())
@endif
Refund Voucher
Add Payment Voucher
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{ Form::open(['route' => ['frontdesk.payment_voucher'], 'method' => 'get', 'class' => 'form-horizontal']) }}
{{--
Status
{{ Form::select('status', ['1' => 'Pending', '2' => 'Approved'], null, ['class' => 'form-control', 'id' => 'party_id', 'placeholder' => 'Select Status']) }}
--}}
Date From
Date To
{{ Form::close() }}

Refund Voucher List

{{-- --}} @if (!empty($payment_vouchers)) @php $i =1 @endphp @foreach ($payment_vouchers as $payment_voucher) {{-- --}} @endforeach @endif
SL Posting By Invoice Date Total AmountApprove
{{$i++}} {{$payment_voucher->user->name}} {{$payment_voucher->fd_invoice->invoice_no}} {{$payment_voucher->created_at->format("d-m-Y")}} {{$payment_voucher->amount}}
@endsection @section('script') @endsection