'integer', 'ticket_item_id' => 'integer', 'win_amount' => 'integer', 'jackpot_allocation_amount' => 'integer', 'match_detail_json' => 'json', ]; } public function batch(): BelongsTo { return $this->belongsTo(SettlementBatch::class, 'settlement_batch_id'); } public function ticketItem(): BelongsTo { return $this->belongsTo(TicketItem::class, 'ticket_item_id'); } }