@extends('dashboard.admin.layout') @section('title', 'Manage Stock Orders') @section('page_subtitle', 'Order table first, with manual order creation moved into a modal trigger.') @section('content')
| ID | User | Symbol | Quantity | Value | Payment | Order | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->user->email ?? 'Deleted User' }} | {{ $order->symbol }} | {{ number_format($order->quantity, 6) }} | {{ number_format($order->order_value, 6) }} | {{ ucfirst($order->payment_status) }} | {{ ucfirst(str_replace('_', ' ', $order->order_status)) }} | @if($order->trashed()) Deleted @else Active @endif | @if(!$order->trashed()) @else @endif |
| No orders found. | ||||||||