Magento 2 – Get current logged in customer details

In this blog post, we will see how to retrieve currently logged in customer details in Magento 2.

We can retrieve the currently logged in customer details using an instance of \Magento\Customer\Model\Session model through constructor. After initialization of model instant, we need to store instantiated object into protected variable like $customerSession. Session model contains so many methods related to customer and we can use this methods to retrieve customers details. Below are some of the methods.

  1. isLoggedIn()
  2. getCustomerId()
  3. getCustomerGroupId()
  4. getCustomer()
  5. getCustomerData()

We can call this methods as shown below.

You can use above code snippet to get current logged in customer details. That’s it. Enjoy!!

2 Comments

  1. This article is really very interesting and effective. Keep it up!

  2. I learned a lot from it… Thanks, team.

Leave a Reply

Your email address will not be published. Required fields are marked *