sarga/packages/Webkul/Shop/src/Config/menu.php

47 lines
1.3 KiB
PHP
Raw Normal View History

<?php
return [
[
2020-02-20 07:05:51 +00:00
'key' => 'account',
'name' => 'shop::app.layouts.my-account',
'route' =>'customer.profile.index',
2020-03-04 06:32:53 +00:00
'sort' => 1,
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.profile',
'name' => 'shop::app.layouts.profile',
'route' =>'customer.profile.index',
2020-03-04 06:32:53 +00:00
'sort' => 1,
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.address',
'name' => 'shop::app.layouts.address',
'route' =>'customer.address.index',
2020-03-04 06:32:53 +00:00
'sort' => 2,
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.reviews',
'name' => 'shop::app.layouts.reviews',
'route' =>'customer.reviews.index',
2020-03-04 06:32:53 +00:00
'sort' => 3,
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.wishlist',
'name' => 'shop::app.layouts.wishlist',
'route' =>'customer.wishlist.index',
2020-03-04 06:32:53 +00:00
'sort' => 4,
2020-03-27 06:43:48 +00:00
], [
'key' => 'account.compare',
'name' => 'shop::app.customer.compare.text',
2020-03-27 06:43:48 +00:00
'route' =>'velocity.customer.product.compare',
'sort' => 5,
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.orders',
'name' => 'shop::app.layouts.orders',
'route' =>'customer.orders.index',
2020-03-27 06:43:48 +00:00
'sort' => 6,
2019-06-28 14:18:52 +00:00
], [
2020-02-20 07:05:51 +00:00
'key' => 'account.downloadables',
'name' => 'shop::app.layouts.downloadable-products',
2019-06-28 14:18:52 +00:00
'route' =>'customer.downloadable_products.index',
2020-03-27 06:43:48 +00:00
'sort' => 7,
]
];
?>