Please check the image for reference How to choose the prior probability of each feature .
Should we use the same prior for every feature or different features use different prior.
for example P(Color = Blue | Stolen = Yes ) = (0 + 1(1/3)) / 5 + 1 , where I used the smoothing parameter (alpha) = 1 and p = 1/3 as color can have 3 values i.e Red Blue and Yellow. So I am a little confused here , should I consider Blue also here or should I just consider Red and Yellow
Also for the other features should I use the same p = 1/3 or for them it should be p=1/2 as they only have two values .

< Color = Blue , Type = Sports , Origin= Domestic >, predict using Naive Bayes that whether the car can be stolen or not.The formula for Laplace smoothing is almost the same as you provide, however in the numerator, a prior P is multiplied to the alpha. Here is the image for further reference
– Skywalker May 20 '21 at 15:31