2021-05-05 06:29:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-05-05 06:29:58 +02:00
|
|
|
*
|
2021-06-21 07:10:20 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-05 06:29:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
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',
|
2022-10-05 02:21:55 +02:00
|
|
|
'user_company',
|
2021-05-05 06:29:58 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-05-05 06:29:58 +02:00
|
|
|
return render('gateways.wepay.signup.index', $data);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|