mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
4918269bf2
- Added: iframeLoaded method for Cypress - Fixed: saving payment method id for CreditCard.php - Added: chromeWebSecurity: false flag for insecure iframe connections - Formatted: payment_methods/index - Formatted: payment-methods-table.blade.php - Added: Test for adding credit card to Stripe - Fixed: Removing client gateway tokens
9 lines
235 B
PHP
9 lines
235 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.payment_methods'))
|
|
|
|
@section('body')
|
|
<div class="flex flex-col">
|
|
@livewire('payment-methods-table', ['client' => $client])
|
|
</div>
|
|
@endsection
|