47 lines
1.3 KiB
PHP
Executable File
47 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
[
|
|
'key' => 'account',
|
|
'name' => 'shop::app.layouts.my-account',
|
|
'route' =>'customer.profile.index',
|
|
'sort' => 1,
|
|
], [
|
|
'key' => 'account.profile',
|
|
'name' => 'shop::app.layouts.profile',
|
|
'route' =>'customer.profile.index',
|
|
'sort' => 1,
|
|
], [
|
|
'key' => 'account.address',
|
|
'name' => 'shop::app.layouts.address',
|
|
'route' =>'customer.address.index',
|
|
'sort' => 2,
|
|
], [
|
|
'key' => 'account.reviews',
|
|
'name' => 'shop::app.layouts.reviews',
|
|
'route' =>'customer.reviews.index',
|
|
'sort' => 3,
|
|
], [
|
|
'key' => 'account.wishlist',
|
|
'name' => 'shop::app.layouts.wishlist',
|
|
'route' =>'customer.wishlist.index',
|
|
'sort' => 4,
|
|
], [
|
|
'key' => 'account.compare',
|
|
'name' => 'shop::app.customer.compare.text',
|
|
'route' =>'velocity.customer.product.compare',
|
|
'sort' => 5,
|
|
], [
|
|
'key' => 'account.orders',
|
|
'name' => 'shop::app.layouts.orders',
|
|
'route' =>'customer.orders.index',
|
|
'sort' => 6,
|
|
], [
|
|
'key' => 'account.downloadables',
|
|
'name' => 'shop::app.layouts.downloadable-products',
|
|
'route' =>'customer.downloadable_products.index',
|
|
'sort' => 7,
|
|
]
|
|
];
|
|
|
|
?>
|