Feature: Updating Core imports after restructure

This commit is contained in:
2026-08-27 01:21:57 +03:00
parent b3405c1b60
commit 0dcaf112be
15 changed files with 52 additions and 139 deletions
+9 -8
View File
@@ -9,7 +9,7 @@
<x-breadcrumb class="mb-14 justify-end" :items="[
$collection
? ['label' => $collection->translateAttribute('name'), 'href' => route('category.show', ['collection' => $collection])]
: ['label' => __('general.nav.products'), 'href' => '/products'],
: ['label' => __('storefront.nav.products'), 'href' => '/products'],
['label' => $product['name']],
]" />
@@ -134,7 +134,7 @@ class="absolute bottom-6 right-8 text-white text-sm"
</div>
@else
<div class="w-full bg-neutral-300 flex items-center justify-center text-neutral-500 min-h-64">
No image
{{ __('storefront.product.no_image') }}
</div>
@endif
</div>
@@ -162,7 +162,7 @@ class="absolute bottom-6 right-8 text-white text-sm"
<div class="text-base leading-relaxed">
{{ $descTruncated }}
@if($descNeedsMore)
<a href="#tab-panel-description" class="underline-slide font-semibold whitespace-nowrap">Περισσότερα</a>
<a href="#tab-panel-description" class="underline-slide font-semibold whitespace-nowrap">{{ __('storefront.product.read_more') }}</a>
@endif
</div>
@@ -172,7 +172,7 @@ class="absolute bottom-6 right-8 text-white text-sm"
<div class="flex items-stretch gap-10">
<x-ui.quantity name="quantity" />
<x-ui.button class="flex-1">Προσθήκη στο καλάθι</x-ui.button>
<x-ui.button class="flex-1">{{ __('storefront.product.add_to_cart') }}</x-ui.button>
</div>
</div>
@@ -180,8 +180,8 @@ class="absolute bottom-6 right-8 text-white text-sm"
</div>
<x-ui.tabs class="mt-16" size="lg" :tabs="[
['id' => 'description', 'label' => __('general.product.description')],
['id' => 'reviews', 'label' => __('general.product.reviews') . ' (' . $product['review_count'] . ')'],
['id' => 'description', 'label' => __('storefront.product.description')],
['id' => 'reviews', 'label' => __('storefront.product.reviews') . ' (' . $product['review_count'] . ')'],
]">
<x-slot name="description">
<div class="leading-7 [&_p]:mt-4">
@@ -207,11 +207,12 @@ class="absolute bottom-6 right-8 text-white text-sm"
@endforeach
</div>
@else
<p class="text-neutral-500 mb-10">Δεν υπάρχουν αξιολογήσεις ακόμα.</p>
<p class="text-neutral-500 mb-10">{{ __('storefront.review.no_reviews_yet') }}</p>
@endif
<h3 class="text-h4 font-bold">
{{ $product['review_count'] > 0 ? 'Πρόσθεσε μια' : 'Γράψε την πρώτη' }} αξιολόγηση για το «{{ $product['name'] }}»
{{ $product['review_count'] > 0 ? __('storefront.review.write_new') : __('storefront.review.write_first') }}
{{ __('storefront.review.for_product', ['name' => $product['name']]) }}
</h3>
<x-review-form :product="$product" />