![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/resources/views/front/payments/ |
<div style="display: none;"> <tr> <td> @if(isset($payment['name'])) {{ ucwords($payment['name']) }} @else <p class="alert alert-danger">You need to have <strong>name</strong> key in your config</p> @endif </td> <td> @if(isset($payment['description'])) {{ $payment['description'] }} @endif </td> <td> <form action="{{ route('checkout.store') }}" method="post" class="pull-right" id="payPalForm"> {{ csrf_field() }} <input type="hidden" name="payment" value="{{ config('paypal.name') }}"> <input type="hidden" class="billing_address" name="billing_address" value=""> <input type="hidden" class="delivery_address_id" name="delivery_address" value=""> <input type="hidden" class="courier" name="courier" value=""> <button onclick="return confirm('Are you sure?')" type="submit" class="btn btn-success pull-right">Pay with {{ ucwords($payment['name']) }} <i class="fa fa-paypal"></i></button> </form> </td> </tr> </div> <script type="text/javascript"> $(document).ready(function () { let billingAddressId = $('input[name="billing_address"]:checked').val(); $('.billing_address').val(billingAddressId); $('input[name="billing_address"]').on('change', function () { billingAddressId = $('input[name="billing_address"]:checked').val(); $('.billing_address').val(billingAddressId); }); let courierRadioBtn = $('input[name="rate"]'); courierRadioBtn.click(function () { $('.rate').val($(this).val()) }); }); </script>