Magento2的Model是如何进行CURD的?
Magento2的Model是如何进行CURD的?
有谁知道这个demo/physicalstores/enabled的值是侟在哪张表里面?
https://gitee.com/zouhongzhao/magento2-action-extension-demo/blob/master/Demo/view/frontend/templates/physical_stores.phtml
```php
<?php if ($this->isEnabledStaffs()): ?>
<a class="physicalstore-view-btn" href="<?php %20echo %20$url; %20?>"><?php echo __('more information') ?> »</a></p>
<?php endif;?>
```php
$this->isEnabledStaffs() 应该改成:$_store->getStatus() ?