The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Jobs\ProcessBtcPayWebhook: $collectionClass, $id, $relations, $class, $keyBy
Loading history...
17
18
/**
19
* Execute the job.
20
*/
21
public function handle(): void
22
{
23
$payload = $this->webhookCall->payload;
24
// We have received a payment for an invoice and user should be upgraded to a paid plan based on order
25
if ($payload['type'] === 'InvoiceReceivedPayment') {