{{-- Example: admin/orders/index.blade.php --}} @extends('layouts.app') {{-- Or your admin layout --}} @section('title', __('orders.index.title')) @section('content')
| {{ __('orders.table.order_id') }} | {{ __('orders.table.status') }} | {{ __('orders.table.contact_email') }} | {{ __('orders.table.total_value') }} | {{ __('orders.table.date') }} | {{ __('orders.table.actions') }} |
|---|---|---|---|---|---|
| #{{ $order->id }} | {{ ucfirst(__($order->status)) }} | {{ $order->contact_email }} | ${{ number_format($order->total_product_value + $order->donation_amount, 2) }} | {{ $order->created_at->format('M d, Y') }} | {{ __('orders.index.view_button') }} |
{{ __('orders.index.no_orders_found') }}
@endif