$post = booking::find()
->join(‘inner join’,‘user’,‘user.id=booking.User’);
return $this->render(‘booking’,[‘posts’=>$post]);
Is this ok?
$post = booking::find()
->join(‘inner join’,‘user’,‘user.id=booking.User’);
return $this->render(‘booking’,[‘posts’=>$post]);
Is this ok?