diff --git a/app/Menu/Shop.php b/app/Menu/Shop.php index a641cbfb..4b6c67f2 100644 --- a/app/Menu/Shop.php +++ b/app/Menu/Shop.php @@ -8,7 +8,7 @@ class Shop { public function make(Builder $menu) { - $menu->add('Catalogue', [ 'permission' => 'backend_access', 'icon' => 'store' ]) + $menu->add('En vente', [ 'permission' => 'backend_access', 'icon' => 'store' ]) ->id('shop') ->activeIfRoute('shop') ->order(2); diff --git a/resources/views/Admin/Shop/PriceLists/modal.blade.php b/resources/views/Admin/Shop/PriceLists/modal.blade.php index a136753c..081d0c19 100644 --- a/resources/views/Admin/Shop/PriceLists/modal.blade.php +++ b/resources/views/Admin/Shop/PriceLists/modal.blade.php @@ -32,7 +32,7 @@ @foreach ($price_list['price_list_values'] as $price_list_value) - @include('admin.Shop.PriceListValues.partials.row_price', ['index' => $loop->index]) + @include('Admin.Shop.PriceListValues.partials.row_price', ['index' => $loop->index]) @endforeach