@extends('guard.layouts.app') @section('content') @section('title', 'Tiến trình')
Tất cả tiến trình
@foreach ($orders as $order) @endforeach
  • ID: {{ $order->id }}
  • Mã đơn: {{ $order->order_code }}
  • Thời gian: {{ $order->created_at->diffForHumans() }}
  • {{ $order->created_at }} -
@if (isset($order->server->action->refund_status) && $order->server->action->refund_status === 'on') @endif {{-- Bảo hành --}} @if (isset($order->server->action->warranty_status) && $order->server->action->warranty_status === 'on') @endif {{-- Cập nhật --}} {{-- bảo hành --}} @if (isset($order->server->action->renews_status) && $order->server->action->renews_status === 'on') @endif
  • Số tiền: {{ $order->price }}đ
  • Số lượng: {{ number_format($order->orderdata()['quantity']) }}
  • Bắt đầu: {{ $order->start }}
  • Đã tăng: {{ number_format($order->buff) }}
@section('script') @endsection @endsection