account pages: login, order history, order details, account details, wishlist

This commit is contained in:
elvira
2026-09-24 17:27:58 +03:00
parent 580adac33a
commit cf3681260b
42 changed files with 1972 additions and 15 deletions
@@ -0,0 +1,13 @@
{{--
An order status as text, e.g. "Σε επεξεργασία". Translated through
storefront.order_status.{status}, falling back to Lunar's own (English)
label from config('lunar.orders.statuses') when that key doesn't exist.
--}}
@props(['status'])
@php
$key = "storefront.order_status.{$status}";
$label = Lang::has($key) ? __($key) : config("lunar.orders.statuses.{$status}.label", $status);
@endphp
<span {{ $attributes }}>{{ $label }}</span>