The only real difference is that to extract fixed effect coefficients, you need to use fixef() rather than coef() so that (t21> gives estimated coefficients for each group).
I will illustrate with the built-in example from the lme4 package.
library("lme4") gm1 <- glmer(cbind(incidence, size - incidence) ~ period + (1 | herd), data = cbpp, family = binomial)
Fixed effect coefficients and confidence intervals, logarithm scale:
cc <- confint(gm1,parm="beta_")
(If you need faster and less accurate Wald confidence intervals, you can use confint(gm1,parm="beta_",method="Wald") instead, this will be equivalent to @Gorka's answer, but a little more convenient.)
Exponential to get odds odds:
rtab <- exp(ctab) print(rtab,digits=3)
source share