diff --git a/resources/views/shop/admin/Dashboard/_partials/counter.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/counter.blade.php similarity index 81% rename from resources/views/shop/admin/Dashboard/_partials/counter.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/counter.blade.php index fe25e608..98de6ae8 100644 --- a/resources/views/shop/admin/Dashboard/_partials/counter.blade.php +++ b/resources/views/Shop/Admin/Dashboard/_partials/counter.blade.php @@ -1,13 +1,13 @@
- @include('shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_orders)) ? $nb_orders : 0, 'class' => 'bg-aqua', 'icon' => 'fa-building-o', 'text' => 'Commandes']) + @include('Shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_orders)) ? $nb_orders : 0, 'class' => 'bg-aqua', 'icon' => 'fa-building-o', 'text' => 'Commandes'])
- @include('shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_invoices)) ? $nb_invoices : 0, 'class' => 'bg-red', 'icon' => 'fa-clock-o', 'text' => 'Factures']) + @include('Shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_invoices)) ? $nb_invoices : 0, 'class' => 'bg-red', 'icon' => 'fa-clock-o', 'text' => 'Factures'])
@@ -17,13 +17,13 @@
- @include('shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_dossiers_encours)) ? $nb_dossiers_encours : 0, 'class' => 'bg-yellow', 'icon' => 'fa-hourglass-start', 'text' => 'CA du mois']) + @include('Shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_dossiers_encours)) ? $nb_dossiers_encours : 0, 'class' => 'bg-yellow', 'icon' => 'fa-hourglass-start', 'text' => 'CA du mois'])
- @include('shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_ventes)) ? $nb_ventes : 0, 'class' => 'bg-green', 'icon' => 'fa-check-square-o', 'text' => 'Panier moyen']) + @include('Shop.admin.Dashboard.components.infobox', ['count' => (isset($nb_ventes)) ? $nb_ventes : 0, 'class' => 'bg-green', 'icon' => 'fa-check-square-o', 'text' => 'Panier moyen'])
diff --git a/resources/views/shop/admin/Dashboard/_partials/evolutions.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/evolutions.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/evolutions.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/evolutions.blade.php diff --git a/resources/views/shop/admin/Dashboard/_partials/infobox.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/infobox.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/infobox.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/infobox.blade.php diff --git a/resources/views/shop/admin/Dashboard/_partials/latest_members.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/latest_members.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/latest_members.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/latest_members.blade.php diff --git a/resources/views/shop/admin/Dashboard/_partials/latest_orders.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/latest_orders.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/latest_orders.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/latest_orders.blade.php diff --git a/resources/views/Shop/Admin/Dashboard/_partials/report.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/report.blade.php new file mode 100644 index 00000000..16576c5d --- /dev/null +++ b/resources/views/Shop/Admin/Dashboard/_partials/report.blade.php @@ -0,0 +1,23 @@ +
+ +
+ @include('Shop.admin.Dashboard._partials.salesByPeriod') +
+ +
+ @include('Shop.admin.Dashboard._partials.stock') +
+ +
+ + +
+
+ @include('Shop.admin.Dashboard._partials.latest_orders') +
+ +
+ @include('Shop.admin.Dashboard._partials.stats_sections') +
+ +
\ No newline at end of file diff --git a/resources/views/shop/admin/Dashboard/_partials/salesByPeriod.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/salesByPeriod.blade.php similarity index 90% rename from resources/views/shop/admin/Dashboard/_partials/salesByPeriod.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/salesByPeriod.blade.php index f3f601c5..87534513 100644 --- a/resources/views/shop/admin/Dashboard/_partials/salesByPeriod.blade.php +++ b/resources/views/Shop/Admin/Dashboard/_partials/salesByPeriod.blade.php @@ -22,14 +22,14 @@
- @include('shop.admin.Dashboard.components.chart') + @include('Shop.admin.Dashboard.components.chart')
diff --git a/resources/views/shop/admin/Dashboard/_partials/stats.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/stats.blade.php similarity index 71% rename from resources/views/shop/admin/Dashboard/_partials/stats.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/stats.blade.php index ea71ee1e..48478a82 100644 --- a/resources/views/shop/admin/Dashboard/_partials/stats.blade.php +++ b/resources/views/Shop/Admin/Dashboard/_partials/stats.blade.php @@ -1,7 +1,7 @@ -@include('shop.admin.Dashboard.components.infobox2', ['count' => (isset($nb_lots_optionne)) ? $nb_lots_optionne : 0, 'class' => 'bg-aqua', 'icon' => 'fa-building-o', 'text' => 'Lots optionnés', 'percent' => 0 ]) +@include('Shop.admin.Dashboard.components.infobox2', ['count' => (isset($nb_lots_optionne)) ? $nb_lots_optionne : 0, 'class' => 'bg-aqua', 'icon' => 'fa-building-o', 'text' => 'Lots optionnés', 'percent' => 0 ]) -@include('shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_options_encours)) ? $montant_options_encours : 0, 'class' => 'bg-red', 'icon' => 'fa-clock-o', 'text' => 'Options En cours', 'percent' => 10 ]) +@include('Shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_options_encours)) ? $montant_options_encours : 0, 'class' => 'bg-red', 'icon' => 'fa-clock-o', 'text' => 'Options En cours', 'percent' => 10 ]) -@include('shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_dossiers_encours)) ? $montant_dossiers_encours : 0, 'class' => 'bg-yellow', 'icon' => 'fa-hourglass-start', 'text' => 'Dossiers en cours', 'percent' => 20 ]) +@include('Shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_dossiers_encours)) ? $montant_dossiers_encours : 0, 'class' => 'bg-yellow', 'icon' => 'fa-hourglass-start', 'text' => 'Dossiers en cours', 'percent' => 20 ]) -@include('shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_ventes)) ? $montant_ventes : 0, 'class' => 'bg-green', 'icon' => 'fa-check-square-o', 'text' => 'Ventes', 'percent' => 30 ]) +@include('Shop.admin.Dashboard.components.infobox2', ['count' => (isset($montant_ventes)) ? $montant_ventes : 0, 'class' => 'bg-green', 'icon' => 'fa-check-square-o', 'text' => 'Ventes', 'percent' => 30 ]) diff --git a/resources/views/shop/admin/Dashboard/_partials/stats_lots.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/stats_lots.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/stats_lots.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/stats_lots.blade.php diff --git a/resources/views/shop/admin/Dashboard/_partials/stats_sections.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/stats_sections.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/stats_sections.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/stats_sections.blade.php diff --git a/resources/views/shop/admin/Dashboard/_partials/stock.blade.php b/resources/views/Shop/Admin/Dashboard/_partials/stock.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/_partials/stock.blade.php rename to resources/views/Shop/Admin/Dashboard/_partials/stock.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/chart.blade.php b/resources/views/Shop/Admin/Dashboard/components/chart.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/chart.blade.php rename to resources/views/Shop/Admin/Dashboard/components/chart.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/counter.blade.php b/resources/views/Shop/Admin/Dashboard/components/counter.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/counter.blade.php rename to resources/views/Shop/Admin/Dashboard/components/counter.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/evolutions.blade.php b/resources/views/Shop/Admin/Dashboard/components/evolutions.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/evolutions.blade.php rename to resources/views/Shop/Admin/Dashboard/components/evolutions.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/infobox.blade.php b/resources/views/Shop/Admin/Dashboard/components/infobox.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/infobox.blade.php rename to resources/views/Shop/Admin/Dashboard/components/infobox.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/infobox2.blade.php b/resources/views/Shop/Admin/Dashboard/components/infobox2.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/infobox2.blade.php rename to resources/views/Shop/Admin/Dashboard/components/infobox2.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/latest_orders.blade.php b/resources/views/Shop/Admin/Dashboard/components/latest_orders.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/latest_orders.blade.php rename to resources/views/Shop/Admin/Dashboard/components/latest_orders.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/map.blade.php b/resources/views/Shop/Admin/Dashboard/components/map.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/map.blade.php rename to resources/views/Shop/Admin/Dashboard/components/map.blade.php diff --git a/resources/views/shop/admin/Dashboard/components/monthly_report.blade.php b/resources/views/Shop/Admin/Dashboard/components/monthly_report.blade.php similarity index 100% rename from resources/views/shop/admin/Dashboard/components/monthly_report.blade.php rename to resources/views/Shop/Admin/Dashboard/components/monthly_report.blade.php diff --git a/resources/views/shop/admin/Dashboard/index.blade.php b/resources/views/Shop/Admin/Dashboard/index.blade.php similarity index 87% rename from resources/views/shop/admin/Dashboard/index.blade.php rename to resources/views/Shop/Admin/Dashboard/index.blade.php index aad29c42..95c2ea85 100644 --- a/resources/views/shop/admin/Dashboard/index.blade.php +++ b/resources/views/Shop/Admin/Dashboard/index.blade.php @@ -10,8 +10,8 @@ @section('content') - @include('shop.admin.Dashboard._partials.counter') - @include('shop.admin.Dashboard._partials.report') + @include('Shop.admin.Dashboard._partials.counter') + @include('Shop.admin.Dashboard._partials.report') @endsection diff --git a/resources/views/shop/admin/Families/create.blade.php b/resources/views/Shop/Admin/Families/create.blade.php similarity index 67% rename from resources/views/shop/admin/Families/create.blade.php rename to resources/views/Shop/Admin/Families/create.blade.php index e4b6cbf7..4c79b9e5 100644 --- a/resources/views/shop/admin/Families/create.blade.php +++ b/resources/views/Shop/Admin/Families/create.blade.php @@ -1,7 +1,7 @@ @extends('boilerplate::layout.index', [ - 'title' => __('shop.families.title'), - 'subtitle' => __('shop.families.add'), - 'breadcrumb' => [__('shop.families.title'), __('shop.families.add')] + 'title' => __('Shop.families.title'), + 'subtitle' => __('Shop.families.add'), + 'breadcrumb' => [__('Shop.families.title'), __('Shop.families.add')] ]) @include('boilerplate::load.fileinput') diff --git a/resources/views/shop/admin/Families/edit.blade.php b/resources/views/Shop/Admin/Families/edit.blade.php similarity index 79% rename from resources/views/shop/admin/Families/edit.blade.php rename to resources/views/Shop/Admin/Families/edit.blade.php index aa826e13..3990b95f 100644 --- a/resources/views/shop/admin/Families/edit.blade.php +++ b/resources/views/Shop/Admin/Families/edit.blade.php @@ -1,6 +1,6 @@ @extends('layout.index', [ - 'title' => __('shop.families.title'), - 'subtitle' => __('shop.families.edit'), + 'title' => __('Shop.families.title'), + 'subtitle' => __('Shop.families.edit'), 'breadcrumb' => ['Familles'] ]) diff --git a/resources/views/shop/admin/Families/form.blade.php b/resources/views/Shop/Admin/Families/form.blade.php similarity index 100% rename from resources/views/shop/admin/Families/form.blade.php rename to resources/views/Shop/Admin/Families/form.blade.php diff --git a/resources/views/shop/admin/Families/list.blade.php b/resources/views/Shop/Admin/Families/list.blade.php similarity index 66% rename from resources/views/shop/admin/Families/list.blade.php rename to resources/views/Shop/Admin/Families/list.blade.php index fda47e13..2c71368e 100644 --- a/resources/views/shop/admin/Families/list.blade.php +++ b/resources/views/Shop/Admin/Families/list.blade.php @@ -1,14 +1,14 @@ @extends('layout.index', [ - 'title' => __('shop.families.title'), - 'subtitle' => __('shop.families.list'), - 'breadcrumb' => [__('shop.families.title')] + 'title' => __('Shop.families.title'), + 'subtitle' => __('Shop.families.list'), + 'breadcrumb' => [__('Shop.families.title')] ]) @section('content')
- {{ __('shop.families.add') }} + {{ __('Shop.families.add') }}
diff --git a/resources/views/shop/admin/Families/show.blade.php b/resources/views/Shop/Admin/Families/show.blade.php similarity index 100% rename from resources/views/shop/admin/Families/show.blade.php rename to resources/views/Shop/Admin/Families/show.blade.php diff --git a/resources/views/shop/admin/Genres/create.blade.php b/resources/views/Shop/Admin/Genres/create.blade.php similarity index 60% rename from resources/views/shop/admin/Genres/create.blade.php rename to resources/views/Shop/Admin/Genres/create.blade.php index 811e8d8b..214ec40b 100644 --- a/resources/views/shop/admin/Genres/create.blade.php +++ b/resources/views/Shop/Admin/Genres/create.blade.php @@ -1,7 +1,7 @@ @extends('layout.index', [ - 'title' => __('shop.genres.title'), - 'subtitle' => __('shop.genres.add'), - 'breadcrumb' => [__('shop.genres.title'), __('shop.genres.add')] + 'title' => __('Shop.genres.title'), + 'subtitle' => __('Shop.genres.add'), + 'breadcrumb' => [__('Shop.genres.title'), __('Shop.genres.add')] ]) @section('content') diff --git a/resources/views/shop/admin/Genres/edit.blade.php b/resources/views/Shop/Admin/Genres/edit.blade.php similarity index 79% rename from resources/views/shop/admin/Genres/edit.blade.php rename to resources/views/Shop/Admin/Genres/edit.blade.php index c30c9c09..eb4feb85 100644 --- a/resources/views/shop/admin/Genres/edit.blade.php +++ b/resources/views/Shop/Admin/Genres/edit.blade.php @@ -1,6 +1,6 @@ @extends('layout.index', [ - 'title' => __('shop.genres.title'), - 'subtitle' => __('shop.genres.edit'), + 'title' => __('Shop.genres.title'), + 'subtitle' => __('Shop.genres.edit'), 'breadcrumb' => ['Familles'] ]) diff --git a/resources/views/shop/admin/Genres/form.blade.php b/resources/views/Shop/Admin/Genres/form.blade.php similarity index 100% rename from resources/views/shop/admin/Genres/form.blade.php rename to resources/views/Shop/Admin/Genres/form.blade.php diff --git a/resources/views/shop/admin/Genres/list.blade.php b/resources/views/Shop/Admin/Genres/list.blade.php similarity index 66% rename from resources/views/shop/admin/Genres/list.blade.php rename to resources/views/Shop/Admin/Genres/list.blade.php index 9f3594e5..1cc695eb 100644 --- a/resources/views/shop/admin/Genres/list.blade.php +++ b/resources/views/Shop/Admin/Genres/list.blade.php @@ -1,14 +1,14 @@ @extends('layout.index', [ - 'title' => __('shop.genres.title'), - 'subtitle' => __('shop.genres.list'), - 'breadcrumb' => [__('shop.genres.title')] + 'title' => __('Shop.genres.title'), + 'subtitle' => __('Shop.genres.list'), + 'breadcrumb' => [__('Shop.genres.title')] ]) @section('content')
- {{ __('shop.genres.add') }} + {{ __('Shop.genres.add') }}
diff --git a/resources/views/shop/admin/Genres/show.blade.php b/resources/views/Shop/Admin/Genres/show.blade.php similarity index 100% rename from resources/views/shop/admin/Genres/show.blade.php rename to resources/views/Shop/Admin/Genres/show.blade.php diff --git a/resources/views/shop/admin/ProductPhotos/partials/block_photo.blade.php b/resources/views/Shop/Admin/ProductPhotos/partials/block_photo.blade.php similarity index 100% rename from resources/views/shop/admin/ProductPhotos/partials/block_photo.blade.php rename to resources/views/Shop/Admin/ProductPhotos/partials/block_photo.blade.php diff --git a/resources/views/shop/admin/ProductPhotos/partials/block_photo_new.blade.php b/resources/views/Shop/Admin/ProductPhotos/partials/block_photo_new.blade.php similarity index 100% rename from resources/views/shop/admin/ProductPhotos/partials/block_photo_new.blade.php rename to resources/views/Shop/Admin/ProductPhotos/partials/block_photo_new.blade.php diff --git a/resources/views/shop/admin/ProductPhotos/partials/list-photos.blade.php b/resources/views/Shop/Admin/ProductPhotos/partials/list-photos.blade.php similarity index 100% rename from resources/views/shop/admin/ProductPhotos/partials/list-photos.blade.php rename to resources/views/Shop/Admin/ProductPhotos/partials/list-photos.blade.php diff --git a/resources/views/shop/admin/Products/create.blade.php b/resources/views/Shop/Admin/Products/create.blade.php similarity index 100% rename from resources/views/shop/admin/Products/create.blade.php rename to resources/views/Shop/Admin/Products/create.blade.php diff --git a/resources/views/shop/admin/Products/edit.blade.php b/resources/views/Shop/Admin/Products/edit.blade.php similarity index 100% rename from resources/views/shop/admin/Products/edit.blade.php rename to resources/views/Shop/Admin/Products/edit.blade.php diff --git a/resources/views/shop/admin/Products/list.blade.php b/resources/views/Shop/Admin/Products/list.blade.php similarity index 100% rename from resources/views/shop/admin/Products/list.blade.php rename to resources/views/Shop/Admin/Products/list.blade.php diff --git a/resources/views/shop/admin/Products/partials/carousel.blade.php b/resources/views/Shop/Admin/Products/partials/carousel.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/carousel.blade.php rename to resources/views/Shop/Admin/Products/partials/carousel.blade.php diff --git a/resources/views/shop/admin/Products/partials/detail.blade.php b/resources/views/Shop/Admin/Products/partials/detail.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/detail.blade.php rename to resources/views/Shop/Admin/Products/partials/detail.blade.php diff --git a/resources/views/shop/admin/Products/partials/edit-documentation.blade.php b/resources/views/Shop/Admin/Products/partials/edit-documentation.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/edit-documentation.blade.php rename to resources/views/Shop/Admin/Products/partials/edit-documentation.blade.php diff --git a/resources/views/shop/admin/Products/partials/edit-option.blade.php b/resources/views/Shop/Admin/Products/partials/edit-option.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/edit-option.blade.php rename to resources/views/Shop/Admin/Products/partials/edit-option.blade.php diff --git a/resources/views/shop/admin/Products/partials/edit-photo.blade.php b/resources/views/Shop/Admin/Products/partials/edit-photo.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/edit-photo.blade.php rename to resources/views/Shop/Admin/Products/partials/edit-photo.blade.php diff --git a/resources/views/shop/admin/Products/partials/edit-renseignement.blade.php b/resources/views/Shop/Admin/Products/partials/edit-renseignement.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/edit-renseignement.blade.php rename to resources/views/Shop/Admin/Products/partials/edit-renseignement.blade.php diff --git a/resources/views/shop/admin/Products/partials/list-mini.blade.php b/resources/views/Shop/Admin/Products/partials/list-mini.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/list-mini.blade.php rename to resources/views/Shop/Admin/Products/partials/list-mini.blade.php diff --git a/resources/views/shop/admin/Products/partials/lot-promo.blade.php b/resources/views/Shop/Admin/Products/partials/lot-promo.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/lot-promo.blade.php rename to resources/views/Shop/Admin/Products/partials/lot-promo.blade.php diff --git a/resources/views/shop/admin/Products/partials/modal-detail.blade.php b/resources/views/Shop/Admin/Products/partials/modal-detail.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/modal-detail.blade.php rename to resources/views/Shop/Admin/Products/partials/modal-detail.blade.php diff --git a/resources/views/shop/admin/Products/partials/modal-edit-document.blade.php b/resources/views/Shop/Admin/Products/partials/modal-edit-document.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/modal-edit-document.blade.php rename to resources/views/Shop/Admin/Products/partials/modal-edit-document.blade.php diff --git a/resources/views/shop/admin/Products/partials/modal-option.blade.php b/resources/views/Shop/Admin/Products/partials/modal-option.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/modal-option.blade.php rename to resources/views/Shop/Admin/Products/partials/modal-option.blade.php diff --git a/resources/views/shop/admin/Products/partials/recherche-disponibles.blade.php b/resources/views/Shop/Admin/Products/partials/recherche-disponibles.blade.php similarity index 100% rename from resources/views/shop/admin/Products/partials/recherche-disponibles.blade.php rename to resources/views/Shop/Admin/Products/partials/recherche-disponibles.blade.php diff --git a/resources/views/shop/admin/Products/product_form.blade.php b/resources/views/Shop/Admin/Products/product_form.blade.php similarity index 100% rename from resources/views/shop/admin/Products/product_form.blade.php rename to resources/views/Shop/Admin/Products/product_form.blade.php diff --git a/resources/views/shop/admin/Products/recherche.blade.php b/resources/views/Shop/Admin/Products/recherche.blade.php similarity index 100% rename from resources/views/shop/admin/Products/recherche.blade.php rename to resources/views/Shop/Admin/Products/recherche.blade.php diff --git a/resources/views/shop/admin/Products/show.blade.php b/resources/views/Shop/Admin/Products/show.blade.php similarity index 100% rename from resources/views/shop/admin/Products/show.blade.php rename to resources/views/Shop/Admin/Products/show.blade.php diff --git a/resources/views/shop/admin/Products/site/lot.blade.php b/resources/views/Shop/Admin/Products/site/lot.blade.php similarity index 100% rename from resources/views/shop/admin/Products/site/lot.blade.php rename to resources/views/Shop/Admin/Products/site/lot.blade.php diff --git a/resources/views/shop/admin/Products/site/recherche.blade.php b/resources/views/Shop/Admin/Products/site/recherche.blade.php similarity index 100% rename from resources/views/shop/admin/Products/site/recherche.blade.php rename to resources/views/Shop/Admin/Products/site/recherche.blade.php diff --git a/resources/views/shop/admin/Sections/create.blade.php b/resources/views/Shop/Admin/Sections/create.blade.php similarity index 74% rename from resources/views/shop/admin/Sections/create.blade.php rename to resources/views/Shop/Admin/Sections/create.blade.php index 58f52e91..8759de03 100644 --- a/resources/views/shop/admin/Sections/create.blade.php +++ b/resources/views/Shop/Admin/Sections/create.blade.php @@ -1,7 +1,7 @@ @extends('boilerplate::layout.index', [ - 'title' => __('shop.sections.title'), - 'subtitle' => __('shop.sections.add'), - 'breadcrumb' => [__('shop.sections.title'), __('shop.sections.add')] + 'title' => __('Shop.sections.title'), + 'subtitle' => __('Shop.sections.add'), + 'breadcrumb' => [__('Shop.sections.title'), __('Shop.sections.add')] ]) @include('boilerplate::load.fileinput') diff --git a/resources/views/shop/admin/Sections/edit.blade.php b/resources/views/Shop/Admin/Sections/edit.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/edit.blade.php rename to resources/views/Shop/Admin/Sections/edit.blade.php diff --git a/resources/views/shop/admin/Sections/form.blade.php b/resources/views/Shop/Admin/Sections/form.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/form.blade.php rename to resources/views/Shop/Admin/Sections/form.blade.php diff --git a/resources/views/shop/admin/Sections/list.blade.php b/resources/views/Shop/Admin/Sections/list.blade.php similarity index 87% rename from resources/views/shop/admin/Sections/list.blade.php rename to resources/views/Shop/Admin/Sections/list.blade.php index 15c869e8..b9ef75fa 100644 --- a/resources/views/shop/admin/Sections/list.blade.php +++ b/resources/views/Shop/Admin/Sections/list.blade.php @@ -1,6 +1,6 @@ @extends('boilerplate::layout.index', [ - 'title' => __('shop.sections.title'), - 'breadcrumb' => [__('shop.sections.title')] + 'title' => __('Shop.sections.title'), + 'breadcrumb' => [__('Shop.sections.title')] ]) @section('content') @@ -15,7 +15,7 @@ - {{ __('shop.sections.add') }} + {{ __('Shop.sections.add') }} diff --git a/resources/views/shop/admin/Sections/partials/carousel.blade.php b/resources/views/Shop/Admin/Sections/partials/carousel.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/carousel.blade.php rename to resources/views/Shop/Admin/Sections/partials/carousel.blade.php diff --git a/resources/views/shop/admin/Sections/partials/detail.blade.php b/resources/views/Shop/Admin/Sections/partials/detail.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/detail.blade.php rename to resources/views/Shop/Admin/Sections/partials/detail.blade.php diff --git a/resources/views/shop/admin/Sections/partials/edit-documentation.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-documentation.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/edit-documentation.blade.php rename to resources/views/Shop/Admin/Sections/partials/edit-documentation.blade.php diff --git a/resources/views/shop/admin/Sections/partials/edit-option.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-option.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/edit-option.blade.php rename to resources/views/Shop/Admin/Sections/partials/edit-option.blade.php diff --git a/resources/views/shop/admin/Sections/partials/edit-photo.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-photo.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/edit-photo.blade.php rename to resources/views/Shop/Admin/Sections/partials/edit-photo.blade.php diff --git a/resources/views/shop/admin/Sections/partials/edit-renseignement.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-renseignement.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/edit-renseignement.blade.php rename to resources/views/Shop/Admin/Sections/partials/edit-renseignement.blade.php diff --git a/resources/views/shop/admin/Sections/partials/list-mini.blade.php b/resources/views/Shop/Admin/Sections/partials/list-mini.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/list-mini.blade.php rename to resources/views/Shop/Admin/Sections/partials/list-mini.blade.php diff --git a/resources/views/shop/admin/Sections/partials/lot-promo.blade.php b/resources/views/Shop/Admin/Sections/partials/lot-promo.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/lot-promo.blade.php rename to resources/views/Shop/Admin/Sections/partials/lot-promo.blade.php diff --git a/resources/views/shop/admin/Sections/partials/modal-detail.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-detail.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/modal-detail.blade.php rename to resources/views/Shop/Admin/Sections/partials/modal-detail.blade.php diff --git a/resources/views/shop/admin/Sections/partials/modal-edit-document.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-edit-document.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/modal-edit-document.blade.php rename to resources/views/Shop/Admin/Sections/partials/modal-edit-document.blade.php diff --git a/resources/views/shop/admin/Sections/partials/modal-option.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-option.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/modal-option.blade.php rename to resources/views/Shop/Admin/Sections/partials/modal-option.blade.php diff --git a/resources/views/shop/admin/Sections/partials/recherche-disponibles.blade.php b/resources/views/Shop/Admin/Sections/partials/recherche-disponibles.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/partials/recherche-disponibles.blade.php rename to resources/views/Shop/Admin/Sections/partials/recherche-disponibles.blade.php diff --git a/resources/views/shop/admin/Sections/show.blade.php b/resources/views/Shop/Admin/Sections/show.blade.php similarity index 100% rename from resources/views/shop/admin/Sections/show.blade.php rename to resources/views/Shop/Admin/Sections/show.blade.php diff --git a/resources/views/shop/admin/Species/create.blade.php b/resources/views/Shop/Admin/Species/create.blade.php similarity index 66% rename from resources/views/shop/admin/Species/create.blade.php rename to resources/views/Shop/Admin/Species/create.blade.php index 2021b9c1..e8c94aaf 100644 --- a/resources/views/shop/admin/Species/create.blade.php +++ b/resources/views/Shop/Admin/Species/create.blade.php @@ -1,7 +1,7 @@ @extends('layout.index', [ - 'title' => __('shop.species.title'), - 'subtitle' => __('shop.species.add'), - 'breadcrumb' => [__('shop.species.title'), __('shop.species.add')] + 'title' => __('Shop.species.title'), + 'subtitle' => __('Shop.species.add'), + 'breadcrumb' => [__('Shop.species.title'), __('Shop.species.add')] ]) @include('boilerplate::load.fileinput') diff --git a/resources/views/shop/admin/Species/edit.blade.php b/resources/views/Shop/Admin/Species/edit.blade.php similarity index 79% rename from resources/views/shop/admin/Species/edit.blade.php rename to resources/views/Shop/Admin/Species/edit.blade.php index f9a1b4cd..0c792c69 100644 --- a/resources/views/shop/admin/Species/edit.blade.php +++ b/resources/views/Shop/Admin/Species/edit.blade.php @@ -1,6 +1,6 @@ @extends('layout.index', [ - 'title' => __('shop.species.title'), - 'subtitle' => __('shop.species.edit'), + 'title' => __('Shop.species.title'), + 'subtitle' => __('Shop.species.edit'), 'breadcrumb' => ['Familles'] ]) diff --git a/resources/views/shop/admin/Species/form.blade.php b/resources/views/Shop/Admin/Species/form.blade.php similarity index 100% rename from resources/views/shop/admin/Species/form.blade.php rename to resources/views/Shop/Admin/Species/form.blade.php diff --git a/resources/views/shop/admin/Species/list.blade.php b/resources/views/Shop/Admin/Species/list.blade.php similarity index 66% rename from resources/views/shop/admin/Species/list.blade.php rename to resources/views/Shop/Admin/Species/list.blade.php index 2c88c389..f4bcbde2 100644 --- a/resources/views/shop/admin/Species/list.blade.php +++ b/resources/views/Shop/Admin/Species/list.blade.php @@ -1,14 +1,14 @@ @extends('layout.index', [ - 'title' => __('shop.species.title'), - 'subtitle' => __('shop.species.list'), - 'breadcrumb' => [__('shop.species.title')] + 'title' => __('Shop.species.title'), + 'subtitle' => __('Shop.species.list'), + 'breadcrumb' => [__('Shop.species.title')] ]) @section('content')
- {{ __('shop.species.add') }} + {{ __('Shop.species.add') }}
diff --git a/resources/views/shop/admin/Species/show.blade.php b/resources/views/Shop/Admin/Species/show.blade.php similarity index 100% rename from resources/views/shop/admin/Species/show.blade.php rename to resources/views/Shop/Admin/Species/show.blade.php diff --git a/resources/views/shop/admin/Varieties/create.blade.php b/resources/views/Shop/Admin/Varieties/create.blade.php similarity index 66% rename from resources/views/shop/admin/Varieties/create.blade.php rename to resources/views/Shop/Admin/Varieties/create.blade.php index 004865b4..a3280662 100644 --- a/resources/views/shop/admin/Varieties/create.blade.php +++ b/resources/views/Shop/Admin/Varieties/create.blade.php @@ -1,7 +1,7 @@ @extends('layout.index', [ - 'title' => __('shop.varieties.title'), - 'subtitle' => __('shop.varieties.add'), - 'breadcrumb' => [__('shop.varieties.title'), __('shop.varieties.add')] + 'title' => __('Shop.varieties.title'), + 'subtitle' => __('Shop.varieties.add'), + 'breadcrumb' => [__('Shop.varieties.title'), __('Shop.varieties.add')] ]) @include('boilerplate::load.fileinput') diff --git a/resources/views/shop/admin/Varieties/edit.blade.php b/resources/views/Shop/Admin/Varieties/edit.blade.php similarity index 79% rename from resources/views/shop/admin/Varieties/edit.blade.php rename to resources/views/Shop/Admin/Varieties/edit.blade.php index cbdce474..be49ac5e 100644 --- a/resources/views/shop/admin/Varieties/edit.blade.php +++ b/resources/views/Shop/Admin/Varieties/edit.blade.php @@ -1,6 +1,6 @@ @extends('layout.index', [ - 'title' => __('shop.varieties.title'), - 'subtitle' => __('shop.varieties.edit'), + 'title' => __('Shop.varieties.title'), + 'subtitle' => __('Shop.varieties.edit'), 'breadcrumb' => ['Familles'] ]) diff --git a/resources/views/shop/admin/Varieties/form.blade.php b/resources/views/Shop/Admin/Varieties/form.blade.php similarity index 100% rename from resources/views/shop/admin/Varieties/form.blade.php rename to resources/views/Shop/Admin/Varieties/form.blade.php diff --git a/resources/views/shop/admin/Varieties/list.blade.php b/resources/views/Shop/Admin/Varieties/list.blade.php similarity index 66% rename from resources/views/shop/admin/Varieties/list.blade.php rename to resources/views/Shop/Admin/Varieties/list.blade.php index c24dc975..7bc7f440 100644 --- a/resources/views/shop/admin/Varieties/list.blade.php +++ b/resources/views/Shop/Admin/Varieties/list.blade.php @@ -1,14 +1,14 @@ @extends('layout.index', [ - 'title' => __('shop.varieties.title'), - 'subtitle' => __('shop.varieties.list'), - 'breadcrumb' => [__('shop.varieties.title')] + 'title' => __('Shop.varieties.title'), + 'subtitle' => __('Shop.varieties.list'), + 'breadcrumb' => [__('Shop.varieties.title')] ]) @section('content')
- {{ __('shop.varieties.add') }} + {{ __('Shop.varieties.add') }}
diff --git a/resources/views/shop/admin/Varieties/show.blade.php b/resources/views/Shop/Admin/Varieties/show.blade.php similarity index 100% rename from resources/views/shop/admin/Varieties/show.blade.php rename to resources/views/Shop/Admin/Varieties/show.blade.php diff --git a/resources/views/shop/_partials/block-banner.twig b/resources/views/Shop/_partials/block-banner.twig similarity index 100% rename from resources/views/shop/_partials/block-banner.twig rename to resources/views/Shop/_partials/block-banner.twig diff --git a/resources/views/Shop/_partials/block-bottom.twig b/resources/views/Shop/_partials/block-bottom.twig new file mode 100644 index 00000000..313b6c12 --- /dev/null +++ b/resources/views/Shop/_partials/block-bottom.twig @@ -0,0 +1,8 @@ +
+ {{ include('Shop._partials.testimonials')}} + {{ include('Shop._partials.services')}} + {{ include('Shop._partials.special-products')}} + {{ include("Shop._partials.newsletter")}} + {{ include("Shop._partials.block-news")}} + {{ include("Shop._partials.block-manufacturers")}} +
\ No newline at end of file diff --git a/resources/views/shop/_partials/block-breadcrumb.twig b/resources/views/Shop/_partials/block-breadcrumb.twig similarity index 100% rename from resources/views/shop/_partials/block-breadcrumb.twig rename to resources/views/Shop/_partials/block-breadcrumb.twig diff --git a/resources/views/shop/_partials/block-manufacturers.twig b/resources/views/Shop/_partials/block-manufacturers.twig similarity index 61% rename from resources/views/shop/_partials/block-manufacturers.twig rename to resources/views/Shop/_partials/block-manufacturers.twig index 1ade8668..1bfca060 100644 --- a/resources/views/shop/_partials/block-manufacturers.twig +++ b/resources/views/Shop/_partials/block-manufacturers.twig @@ -4,15 +4,15 @@