whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Http
/
Controllers
/
Upload File:
files >> //home/qbizpnmr/arif.umairtax.com/app/Http/Controllers/PaymentNotificationWebhookController.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Http\Controllers; use App\Http\Requests\Payments\PaymentNotificationWebhookRequest; use App\Models\Client; use App\Models\CompanyGateway; use App\Utils\Traits\MakesHash; class PaymentNotificationWebhookController extends Controller { use MakesHash; public function __invoke(PaymentNotificationWebhookRequest $request, string $company_key, string $company_gateway_id, string $client_hash) { /** @var \App\Models\CompanyGateway $company_gateway */ $company_gateway = CompanyGateway::find($this->decodePrimaryKey($company_gateway_id)); /** @var \App\Models\Client $client */ $client = Client::find($this->decodePrimaryKey($client_hash)); return $company_gateway ->driver($client) ->processWebhookRequest($request); } }
Copyright ©2021 || Defacer Indonesia