@extends('admin.layout') @section('title', 'Mağaza Siparişleri') @section('content')
| # | Müşteri | Telefon | Ürünler | Tutar | Durum | Tarih | |
|---|---|---|---|---|---|---|---|
| {{ $order->id }} |
{{ $order->customer_name }}
{{ $order->user?->name }} · {{ $order->user?->email }}
|
{{ $order->customer_phone }} |
@foreach($order->items as $item)
{{ $item->quantity }}× {{ $item->product_title }} ({{ $item->size }})
@endforeach
|
{{ number_format((float)$order->total_amount, 2, ',', '.') }} ₺ | {{ $order->status }} | {{ $order->created_at?->format('d.m.Y H:i') }} | |
| Sipariş yok. | |||||||