diff --git a/resources/views/cart/partials/product/description.blade.php b/resources/views/cart/partials/product/description.blade.php new file mode 100644 index 00000000..02c94760 --- /dev/null +++ b/resources/views/cart/partials/product/description.blade.php @@ -0,0 +1,14 @@ + +
+ +
@{{ item.name }}
+
+ @{{ option }}: @{{ optionValue }} +
+
+ @{{ option.label }}: @{{ option.value.title || option.value }} +
+
+ @include('rapidez-ct::cart.partials.product.remove-button') +
+ \ No newline at end of file diff --git a/resources/views/cart/partials/product/image.blade.php b/resources/views/cart/partials/product/image.blade.php new file mode 100644 index 00000000..2cb70b7e --- /dev/null +++ b/resources/views/cart/partials/product/image.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/cart/partials/product/price.blade.php b/resources/views/cart/partials/product/price.blade.php new file mode 100644 index 00000000..699520ca --- /dev/null +++ b/resources/views/cart/partials/product/price.blade.php @@ -0,0 +1,14 @@ + +
+ @{{ item.specialPrice | price }} +
+
+ @{{ item.price | price }} +
+ + + + + + @{{ item.total | price }} + \ No newline at end of file diff --git a/resources/views/cart/partials/product/remove-button.blade.php b/resources/views/cart/partials/product/remove-button.blade.php new file mode 100644 index 00000000..510c179b --- /dev/null +++ b/resources/views/cart/partials/product/remove-button.blade.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/resources/views/cart/partials/products.blade.php b/resources/views/cart/partials/products.blade.php index 69340e3d..8f4ccc6d 100644 --- a/resources/views/cart/partials/products.blade.php +++ b/resources/views/cart/partials/products.blade.php @@ -10,40 +10,9 @@ - - - - - - - - -
- @{{ item.specialPrice | price }} -
-
- @{{ item.price | price }} -
- - - - - - @{{ item.total | price }} - + @include('rapidez-ct::cart.partials.product.image') + @include('rapidez-ct::cart.partials.product.description') + @include('rapidez-ct::cart.partials.product.price') diff --git a/resources/views/checkout/partials/sections/newsletter.blade.php b/resources/views/checkout/partials/sections/newsletter.blade.php new file mode 100644 index 00000000..f2ce217d --- /dev/null +++ b/resources/views/checkout/partials/sections/newsletter.blade.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/views/checkout/steps/credentials.blade.php b/resources/views/checkout/steps/credentials.blade.php index 0efebe60..81f0c26d 100644 --- a/resources/views/checkout/steps/credentials.blade.php +++ b/resources/views/checkout/steps/credentials.blade.php @@ -6,6 +6,7 @@ @include('rapidez-ct::checkout.partials.sections.login') @include('rapidez-ct::checkout.partials.sections.address') + @include('rapidez-ct::checkout.partials.sections.newsletter') @include('rapidez-ct::checkout.partials.sections.shipping')