@extends('layouts.account', ['title' => 'Account - Orders History']) @section('content')
| Order # | Status | |||
|---|---|---|---|---|
{{ $order->number }}
|
{{ \Carbon\Carbon::parse($order->created_at)->format('d M Y') }} | {{ $order->status_title }} | Rp {{ number_format($order->subtotal, 0, ',', '.') }} |
@foreach ($order->details->take(1) as $detail)
|