chore: remove APAW from tracking; gitignore agent-generated files
This commit is contained in:
14
resources/views/payments/partials/pay_offline.blade.php
Normal file
14
resources/views/payments/partials/pay_offline.blade.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<div class="col-md-12">
|
||||
<form action="{{action([\App\Http\Controllers\Superadmin\SubscriptionPaymentController::class, 'confirmPayment'], [$package->id])}}" method="POST">
|
||||
{{ csrf_field() }}
|
||||
<input type="hidden" name="paid_via" value="{{$k}}">
|
||||
|
||||
<button type="submit" class="btn btn-success btn-sm">
|
||||
<i class="fas fa-hand-holding-usd"></i>
|
||||
{{$v}}
|
||||
</button>
|
||||
<small class="form-text text-muted">
|
||||
@lang('messages.offline_pay_helptext')
|
||||
</small>
|
||||
</form>
|
||||
</div>
|
||||
8
resources/views/payments/partials/pay_paypal.blade.php
Normal file
8
resources/views/payments/partials/pay_paypal.blade.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="col-md-12">
|
||||
|
||||
<a href="{{action([\App\Http\Controllers\Superadmin\SubscriptionPaymentController::class, 'paypalExpressCheckout'], [$package->id])}}" class="btn btn-primary btn-sm">
|
||||
<i class="fab fa-paypal"></i>
|
||||
PayPal
|
||||
</a>
|
||||
|
||||
</div>
|
||||
6
resources/views/payments/partials/pay_stripe.blade.php
Normal file
6
resources/views/payments/partials/pay_stripe.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<div class="col-md-12">
|
||||
<button type="submit" class="btn btn-info btn-sm" id="checkout-stripe">
|
||||
<i class="fab fa-cc-stripe"></i>
|
||||
{{$v}}
|
||||
</button>
|
||||
</div>
|
||||
Reference in New Issue
Block a user