mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
36 lines
706 B
PHP
36 lines
706 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\PaymentDrivers\WePay;
|
|
|
|
use App\PaymentDrivers\WePayPaymentDriver;
|
|
use Illuminate\Http\Request;
|
|
|
|
class Setup
|
|
{
|
|
public $wepay;
|
|
|
|
public function __construct(WePayPaymentDriver $wepay)
|
|
{
|
|
$this->wepay = $wepay;
|
|
}
|
|
|
|
public function boot($data)
|
|
{
|
|
/*
|
|
'user_id',
|
|
'company',
|
|
*/
|
|
|
|
return render('gateways.wepay.signup.index', $data);
|
|
}
|
|
|
|
} |