How to offset matter physics body

Problem Solved !

let offset= {
    x:0,
    y:102
}
			
let body = this.car.body;
body.position.x += offset.x;
body.position.y += offset.y;
body.positionPrev.x += offset.x;
body.positionPrev.y += offset.y;

Anyone facing the similar problem please refer the link below ,scroll down to the Yannick’s post.

https://phaser.discourse.group/t/how-to-rotate-mattersprite-around-a-point/1791