$booking->update([
'stripePayment->paymentStatus' => 'completed',
]);
For this to work you should be on MySQL v 5.7 + and also if you are using $fillable property to mark the fillable fields in the model, then you should add stripePayment->paymentStatus in the fillable array.
Otherwise you could just add the empty guarded property.