@foreach($invoices as $invoice)
@endforeach
Order ID |
Tình trạng đơn hàng |
Tên |
Tên công ty |
Địa chỉ |
Mã số thuế |
Email |
Số điện thoại |
Tình trạng |
Ngày cập nhật |
|
ORDER#{{ $invoice->order->id }} |
@php
$orderColor = config('status.order_color.' . $invoice->order->status);
$orderStatus = config('status.order.' . $invoice->order->status);
@endphp
{{trans('admin::message.status.' . $orderStatus)}}
|
{{ $invoice->order->fullname ?: '-' }} |
{{ $invoice->company }} |
{{ $invoice->address ?: '-' }} |
{{ $invoice->taxcode ?: '-' }} |
{{ $invoice->email ?: '-' }} |
{{ $invoice->phone ?: '-' }} |
{{$invoice->status ?: \App\Enums\InvoiceStatus::PENDING}}
|
{{ $invoice->updated_at }} |
$invoice->id]) }}")'
title="Delete" title="">
|