1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-17 00:22:51 +01:00
invoiceninja/resources/views/payments/stripe/credit_card.blade.php

12 lines
291 B
PHP
Raw Normal View History

2016-06-20 16:14:43 +02:00
@extends('payments.credit_card')
@section('head')
@parent
2018-03-07 16:23:25 +01:00
@if ($accountGateway->getPublishableKey())
2016-06-20 16:14:43 +02:00
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
2019-01-30 12:00:26 +01:00
<script type="text/javascript" src="https://js.stripe.com/v3/"></script>
2018-02-21 14:21:27 +01:00
2016-06-20 16:14:43 +02:00
@endif
@stop