order list update

This commit is contained in:
Abhishek Mali
2025-11-12 19:44:04 +05:30
parent 47711478a6
commit 5f477c03d0
5 changed files with 162 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
@extends('admin.layouts.app')
@section('page-title', 'Orders')
@section('page-title', 'Dashboard')
@section('content')
<div class="container-fluid py-4">
@@ -78,14 +78,14 @@
</div>
</div>
{{-- Orders Table --}}
{{-- Recent Orders Table --}}
<div class="card shadow-sm">
<div class="card-header bg-light">
<strong>Recent Orders</strong>
</div>
<div class="card-body table-responsive">
<table class="table table-striped align-middle">
<thead>
<table class="table table-striped table-bordered align-middle text-center">
<thead class="table-light">
<tr>
<th>#</th>
<th>Order ID</th>
@@ -93,7 +93,17 @@
<th>Description</th>
<th>Origin</th>
<th>Destination</th>
<th>TTL Amount</th>
<th>CTN</th>
<th>QTY</th>
<th>TTL/QTY</th>
<th>Unit</th>
<th>Price ()</th>
<th>TTL Amount ()</th>
<th>CBM</th>
<th>TTL CBM</th>
<th>KG</th>
<th>TTL KG</th>
<th>Shop No</th>
<th>Status</th>
<th>Date</th>
<th>Action</th>
@@ -102,24 +112,39 @@
<tbody>
@forelse($orders as $index => $order)
<tr>
<td>{{ $index + 1 }}</td>
<td><a href="{{ route('admin.orders.show', $order->id) }}">{{ $order->order_id }}</a></td>
<td>{{ $order->id }}</td>
<td><a href="{{ route('admin.orders.show', $order->id) }}" class="fw-semibold text-primary">{{ $order->order_id }}</a></td>
<td>{{ $order->mark_no }}</td>
<td>{{ $order->description }}</td>
<td>{{ $order->origin }}</td>
<td>{{ $order->destination }}</td>
<td>{{ $order->ctn }}</td>
<td>{{ $order->qty }}</td>
<td>{{ $order->ttl_qty }}</td>
<td>{{ $order->unit }}</td>
<td>{{ number_format($order->price, 2) }}</td>
<td>{{ number_format($order->ttl_amount, 2) }}</td>
<td>{{ $order->cbm }}</td>
<td>{{ $order->ttl_cbm }}</td>
<td>{{ $order->kg }}</td>
<td>{{ $order->ttl_kg }}</td>
<td>{{ $order->shop_no }}</td>
<td><span class="badge bg-info text-dark">{{ ucfirst($order->status) }}</span></td>
<td>{{ $order->created_at->format('d-m-Y') }}</td>
<td><a href="{{ route('admin.orders.show', $order->id) }}" class="btn btn-sm btn-outline-primary">View</a></td>
<td>
<a href="{{ route('admin.orders.show', $order->id) }}" class="btn btn-sm btn-outline-primary">
<i class="bi bi-eye"></i> View
</a>
</td>
</tr>
@empty
<tr><td colspan="10" class="text-center">No orders found</td></tr>
<tr><td colspan="20" class="text-center text-muted">No orders found</td></tr>
@endforelse
</tbody>
</table>
</div>
</div>
</div>
{{-- Autofill JS --}}