gateway_key)->firstOrFail(); } /** * Resolve payment hash. * * @param string $hash * @return null|\App\Http\Requests\Payments\PaymentHash */ public function getPaymentHash(): ?PaymentHash { if ($this->query('hash')) { return PaymentHash::where('hash', $this->query('hash'))->firstOrFail(); } } /** * Resolve possible payment in the request. * * @return null|\App\Models\Payment */ public function getPayment(): ?Payment { $hash = $this->getPaymentHash(); return $hash->payment; } /** * Resolve client from payment hash. * * @return null|\App\Models\Client */ public function getClient(): ?Client { $hash = $this->getPaymentHash(); return Client::find($hash->data->client_id)->firstOrFail(); } /** * Resolve company from company_key parameter. * * @return null|\App\Models\Company */ public function getCompany(): ?Company { return Company::where('company_key', $this->company_key)->firstOrFail(); } }