সেশন থেকে গ্রাহক আইডি পাবেন কীভাবে? আমি চেষ্টা করেছিলাম কিন্তু কাজ করিনি।
protected $_customerBonusPointFactory;
protected $_customerSession;
public function __construct(Session $customerSession, \Magento\Framework\View\Element\Template\Context $context) {
$this->_customerSession = $customerSession;
parent::__construct($context);
}
public function _prepareLayout() {
var_dump($this->_customerSession->getCustomer()->getId());
exit();
return parent::_prepareLayout();
}
$this->session->isLoggedIn()
আমার নিয়ামক শ্রেণিতে প্রত্যাবর্তন সত্য বলে পেয়েছি কিন্তু আমার ব্লক ক্লাসে মিথ্যা প্রত্যাবর্তন করেছি। কেন?