@extends('layouts.app')
@section('body-class', 'page-order')
@section('content')
| {{ __('front/order.order_number') }} | {{ __('front/order.order_items') }} | {{ __('front/order.order_date') }} | {{ __('front/order.order_status') }} | {{ __('front/order.order_total') }} | {{ __('front/common.action') }} | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @if ($order->children->count()) @endif {{ $order->number }} |
@foreach ($order->items->take(5) as $product)
|
{{ $order->created_at->format('Y-m-d') }} | {{ $order->status_format }} | {{ $order->total_format }} | {{ __('front/common.view') }} @if ($order->status == 'shipped') @endif @hookinsert('account.order_index.actions.after', $order) | ||||||||||||
|
|||||||||||||||||