@extends('layouts.admin') @section('title', 'Заказ ' . $order->order_number) @section('content')
Дата: {{ $order->created_at->format('d.m.Y H:i') }}
Клиент: {{ $order->customer_name }}
Email: {{ $order->customer_email }}
Телефон: {{ $order->customer_phone }}
@if($order->shipping_address)Адрес доставки: {{ $order->shipping_address }}
@endif @if($order->comment)Комментарий: {{ $order->comment }}
@endif| Товар | Вариация | SKU | Кол-во | Цена | Сумма |
|---|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->variation_name ?? '—' }} | {{ $item->sku ?? '—' }} | {{ $item->quantity }} | {{ number_format($item->price, 0, '.', ' ') }} ₽ | {{ number_format($item->total, 0, '.', ' ') }} ₽ |
| Итого: | {{ number_format($order->total, 0, '.', ' ') }} ₽ | ||||