mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-28 16:50:51 -05:00
* checkout.com credit card payment for livewire * implement interface for livewire view * livewire method interface * implement interfaces * assets production build * checkout.com: credit card * stripe: credit card * lift up logic from process payment component * update stripe payment view logic * wait fn for mounting existing JS * credit card: simplify data passing * stripe: browser pay * stripe cc: remove getData * stripe: cc * stripe: alipay * checkout :cc * stripe: apple pay * stripe: browser pay * assets production build
23 lines
501 B
PHP
23 lines
501 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\PaymentDrivers\Common;
|
|
|
|
interface LivewireMethodInterface
|
|
{
|
|
/**
|
|
* Payment page for the gateway method.
|
|
*
|
|
* @param array $data
|
|
*/
|
|
public function livewirePaymentView(): string;
|
|
}
|