2019-09-29 23:49:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-09-29 23:49:43 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Gateway;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class PaymentHookController extends Controller
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public function process($company_gateway_id, $gateway_type_id)
|
|
|
|
{
|
|
|
|
$gateway = Gateway::find($company_gateway_id);
|
2019-09-29 23:49:43 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
dd(request()->input());
|
|
|
|
}
|
|
|
|
}
|