@push('styles') @endpush

Add Receipt


{{csrf_field()}}
@if ($errors->has('donor_id')) {{ $errors->first('donor_id') }} @endif
@if(Request::has('donor_id'))
@php $donorInfo = App\Models\Donor::where('id',Request::get('donor_id'))->first(); @endphp

{{ $donorInfo->first_name.' '.$donorInfo->last_name }}

{{ $donorInfo->address }}

{{ '+'.$donorInfo->country_code.'-'.$donorInfo->contact }}

@endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
@if ($errors->has('card_number')) {{ $errors->first('card_number') }} @endif
@if ($errors->has('expiry_month')) {{ $errors->first('expiry_month') }} @endif
@if ($errors->has('expiry_year')) {{ $errors->first('expiry_year') }} @endif
@if ($errors->has('cvv')) {{ $errors->first('cvv') }} @endif

@if ($errors->has('cheque_no')) {{ $errors->first('cheque_no') }} @endif
@if ($errors->has('cheque_date')) {{ $errors->first('cheque_date') }} @endif

@if ($errors->has('pledge_date')) {{ $errors->first('pledge_date') }} @endif

@if ($errors->has('payment_status')) {{ $errors->first('payment_status') }} @endif
@if ($errors->has('remarks')) {{ $errors->first('remarks') }} @endif
@if ($errors->has('event_id')) {{ $errors->first('event_id') }} @endif
@push('modals') @include('admin.donor.partials.addDonorModal',['module'=>'receipt']) @endpush @push('scripts')