| 13532 |
anikendra |
1 |
<ul class="list-unstyled">
|
|
|
2 |
<li><?php echo $this->Html->link(__('List Store Products'), array('action' => 'index')); ?></li>
|
|
|
3 |
<li><?php echo $this->Html->link(__('New Store Product'), array('action' => 'add')); ?></li>
|
|
|
4 |
<li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
|
|
|
5 |
<li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
|
|
|
6 |
<li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li>
|
|
|
7 |
<li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li>
|
|
|
8 |
</ul>
|