@extends('layouts.frontend') @section('content')
Имя пользователя: {{ Auth::user()->name }}
Email: {{ Auth::user()->email }}
Order ID | Товары | Сумма | Статус оплаты | Статус заказа | Дата |
---|---|---|---|---|---|
#052{{ $order->id }} |
@php $products = json_decode($order->products, true); @endphp
@if($products)
|
{{ $order->total }} {{ $order->payment_currency ?? '' }} | {{ ucfirst($order->payment_status) }} | {{ ucfirst($order->order_status) }} | {{ $order->created_at->format('H:i d.m.Y') }} |
У вас пока нет заказов.
@endif