@extends('shop.layout') @section('title', __('portal.shop.my_account')) @section('content') @php $currency = $tenant->settings['currency'] ?? 'MDL'; $statuses = \App\Models\Tenant\OnlineOrder::STATUSES; @endphp
📞 {{ $customer->phone }}
@if ($customer->email)✉️ {{ $customer->email }}
@endif{{ __('portal.shop.no_orders_yet') }}
{{ __('portal.shop.view_catalog') }}| {{ __('portal.shop.order_nr') }} | {{ __('portal.shop.order_date') }} | {{ __('portal.shop.order_items') }} | {{ __('portal.common.total') }} | {{ __('portal.shop.status') }} | |
|---|---|---|---|---|---|
| #{{ $order->number }} | {{ $order->created_at->format('d.m.Y') }} | {{ $order->items()->count() }} | {{ number_format((float) $order->total, 2) }} {{ $currency }} | {{ $statuses[$order->status] ?? $order->status }} | {{ __('portal.shop.order_details_arrow') }} |