@extends("admin.layouts.app") @section("title", __("admin.orders.title")) @section("content")
| {{ __('common.table.order_num') }} | {{ __('common.table.client') }} | {{ __('common.table.date') }} | {{ __('common.table.amount') }} | {{ __('common.table.payment_method') }} | {{ __('common.table.status') }} | {{ __('common.table.actions') }} |
|---|---|---|---|---|---|---|
| #{{ $order->order_num }} | @if($order->client) client_id) }}" style="color:#337ab7;text-decoration:none;">{{ $order->client?->full_name ?? "Deleted Client" }} @else N/A @endif | {{ $order->date?->format("d M Y") ?? "-" }} | ${{ number_format($order->amount, 2) }} | {{ $order->payment_method ?? "-" }} | {{ ucfirst($order->status ?? "") }} | {{ __('common.actions.view') }} |
| {{ __('admin.orders.no_orders') }} | ||||||