From e407934e2a819d30114d24602dc9525a209dbaf3 Mon Sep 17 00:00:00 2001 From: Ludovic CANDELLIER Date: Thu, 26 Aug 2021 15:59:56 +0200 Subject: [PATCH] Fix menu catalogue, fix path for price modal --- app/Menu/Shop.php | 2 +- resources/views/Admin/Shop/PriceLists/modal.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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