1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Livewire/BillingPortal/Submit.php

58 lines
2.1 KiB
PHP
Raw Normal View History

2024-02-19 18:16:40 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Livewire\BillingPortal;
use Livewire\Component;
2024-02-20 06:05:00 +01:00
use App\Services\ClientPortal\InstantPayment;
2024-02-19 18:16:40 +01:00
class Submit extends Component
{
public array $context;
public function mount()
{
// This is right place to check if everything is set up correctly.
2024-02-20 06:05:00 +01:00
// <input type="hidden" name="action" value="payment">
// <input type="hidden" name="invoices[]" value="{{ $context['form']['invoice_hashed_id'] ?? '' }}">
// <input type="hidden" name="payable_invoices[0][amount]" value="{{ $context['form']['payable_amount'] ?? '' }}">
// <input type="hidden" name="payable_invoices[0][invoice_id]" value="{{ $context['form']['invoice_hashed_id'] ?? '' }}">
// <input type="hidden" name="company_gateway_id" value="{{ $context['form']['company_gateway_id'] ?? '' }}"/>
// <input type="hidden" name="payment_method_id" value="{{ $context['form']['payment_method_id'] ?? '' }}"/>
//hash
//sidebar = h
// $request = new \Illuminate\Http\Request([
// 'sidebar' => 'hidden',
// 'hash' => $this->context['hash'],
// 'action' => 'payment',
// 'invoices[]' => $this->context['form']['invoice_hashed_id'],
// 'payable_invoices[0][amount]' => $this->context['form']['payable_amount'],
// 'payable_invoices[0][invoice_id]' => $this->context['form']['invoice_hashed_id'],
// 'company_gateway_id' => $this->context['form']['company_gateway_id'],
// 'payment_method_id' => $this->context['form']['payment_method_id'],
// ]);
// return (new InstantPayment($request))->run();
2024-02-19 18:16:40 +01:00
$this->dispatch('purchase.submit');
}
public function render()
{
return <<<'HTML'
<div></div>
HTML;
}
}