Files
Kent-logistics-Laravel/resources/views/admin/dashboard.blade.php
Utkarsh Khedkar 22be272067 Shipment Frontend
2025-11-17 10:35:42 +05:30

1088 lines
32 KiB
PHP

@extends('admin.layouts.app')
@section('page-title', 'Dashboard')
@section('content')
<style>
/*Remove horizontal scroll bar*/
html, body {
overflow-x: hidden !important;
}
/* Your existing CSS remains exactly the same */
body, .container-fluid { background: #f4f7fc; }
.dash-top-titlebox {
margin-bottom: 2px; background: transparent;
padding-left: 3px; padding-top: 2px;
margin-left: 0px;
}
.dash-title-main {
font-size: 1.54rem;
font-weight: 800;
letter-spacing: .018em;
color: #18213e;
margin-bottom: 2px;
}
.dash-title-desc {
font-size: 1rem;
color: #6577a3;
margin-bottom: 5px;
font-weight: 500;
letter-spacing: .01em;
}
.stats-row-wrap { margin-bottom: 33px; }
.stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
margin-bottom: 14px;
}
@media (max-width: 992px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 630px) { .stats-row { grid-template-columns: 1fr; } }
.stats-card {
background: rgba(255,255,255,0.77);
border-radius: 16px;
box-shadow: 0 7px 32px 0 rgba(19, 39, 78, 0.13), 0 2px 7px 0 rgba(160,180,224,0.14), 0 2px 30px #c5dcf940;
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
overflow: hidden; position: relative; display: flex; align-items: center; gap: 14px; padding: 18px 16px;
border: 1.2px solid #e8f0fd80;
transition: box-shadow .2s cubic-bezier(.45,.57,.46,.99), transform .15s cubic-bezier(.45,.57,.46,.99);
z-index: 1;
}
.stats-card::after {
content:""; position: absolute; inset: 0; border-radius: 16px; pointer-events:none;
background: linear-gradient(120deg,rgba(74,156,255,.15) 5%,rgba(210,228,255,.06) 54%,rgba(120,150,255,.13) 99%);
z-index:0;
}
.stats-card:hover, .stats-card:focus-within {
box-shadow: 0 18px 48px 0 rgba(62,87,177,0.16), 0 3px 19px 0 #82ccfc3b;
transform: scale(1.031) translateY(-7px);
z-index: 2;
}
.stats-icon {
font-size:1.65rem; width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center;
background:#f5f7fd; transition:.22s cubic-bezier(.57,.75,.45,.97);
box-shadow:0 1.7px 13px #edf1fd38;
}
.stats-card-blue .stats-icon {background:linear-gradient(135deg,#3492f8 55%,#1256cc 110%);color:#fff;}
.stats-card-green .stats-icon {background:linear-gradient(135deg,#18ce77 60%,#08ac52 110%);color:#fff;}
.stats-card-red .stats-icon {background:linear-gradient(135deg,#ff5a4e 65%,#d90010 110%);color:#fff;}
.stats-card-orng .stats-icon {background:linear-gradient(135deg,#ffb23c 53%,#e17800 110%);color:#fff;}
.stats-label { font-size:13px; color:#63709b; font-weight:600; letter-spacing:.28px;}
.stats-value { font-size:1.25rem; font-weight:700; color:#194073;}
.stats-card:hover .stats-icon {
transform: scale(1.09) rotate(7deg);
box-shadow:0 0 13px #2396f33b;
}
/* UPDATED: Table header with curves on both sides */
.table thead tr {
background: #feebbe !important;
border-radius: 12px 12px 0 0;
box-shadow: 0 2px 19px #f8cf667e;
}
.table thead th {
background: transparent !important;
border: none;
font-weight: 700; color: #343535; letter-spacing: 0.02em; font-size:15px;
padding-top: 12px; padding-bottom: 10px;
}
.table thead th:first-child { border-radius: 9px 0 0 0;}
.table thead th:last-child { border-radius: 0 9px 0 0;}
/* ------- */
.order-mgmt-box {
background: #fff; border-radius:17px; box-shadow:0 7px 38px #dde3fa77, 0 2px 9px #e5e7ff80;
margin-bottom: 33px; margin-top: 10px; padding-bottom: 0;
}
.order-mgmt-bar {
display:flex; justify-content:space-between; align-items:center;
border-radius:17px 17px 0 0; background: #fceeb8ff;
min-height: 54px; padding: 15px 26px 10px 22px; border-bottom: 1.4px solid #e8e2cf;
box-shadow:0 1px 13px #ffe2a888;
}
.order-mgmt-title {
font-size:1.32rem; font-weight:800; color:#2451af; letter-spacing:.08em;
display: flex; align-items: center; gap: 11px;
}
.order-mgmt-title i { font-size: 1.12em; color: #336ad3; }
.create-order-btn {
background: linear-gradient(90deg,#226ad6,#46b4fd 123%);
padding:9px 26px; font-weight:600; border:none; border-radius:9px; color:#fff;
font-size:16.2px; box-shadow: 0 2px 13px #dde7fa42;
transition: background 0.16s, box-shadow .17s;
display: flex; align-items: center; gap: 8px; font-family: inherit;
}
.create-order-btn:hover {
background: linear-gradient(90deg,#3264f8,#3acfff 140%);
box-shadow:0 4px 25px #5ab8f880;
}
.card-body, .order-mgmt-main {
background: #fff;
border-radius: 0 0 17px 17px;
padding:25px;
margin-top: 15px;
}
.card {
border-radius:17px;
box-shadow:0 7px 29px #e7eefd8c;
border:none;
margin-bottom:23px!important;
margin-top: 15px;
}
/* FURTHER REDUCED: Table row spacing */
.table {
background:#fff;
border-radius:9px;
box-shadow:0 2px 12px #e2ebf941;
border-collapse: separate;
border-spacing: 0 2px; /* FURTHER REDUCED: from 4px to 2px */
}
.table-striped tbody tr {
background: #fff;
border-radius: 6px; /* FURTHER REDUCED: from 8px to 6px */
box-shadow: 0 1px 3px rgba(0,0,0,0.04); /* FURTHER REDUCED shadow */
margin-bottom: 2px; /* FURTHER REDUCED: from 4px to 2px */
transition: all 0.3s ease;
}
.table-striped tbody tr:hover {
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
transform: translateY(-1px);
}
.table-striped tbody tr:nth-of-type(odd) {
background:#f9fafc;
}
.table-striped tbody tr:nth-of-type(even) {
background:#ffffff;
}
.table td {
padding: 12px 6px;
border: none;
position: relative;
}
.table td:first-child {
border-radius: 6px 0 0 6px;
}
.table td:last-child {
border-radius: 0 6px 6px 0;
}
.table-responsive { border-radius:10px; }
.badge { font-size:13px; font-weight:600; padding:7px 17px; border-radius:12px;}
.bg-info { background-color:#22cbfa!important; color:#fff!important;}
.form-label { font-weight:600; color:#1d3159; font-size:15px;}
.form-control, .form-select {
border-radius:8px!important; font-size:15.8px; background: #f7f9fe;
border:1.2px solid #c7dbfa; font-weight:500;
}
.form-control:focus, .form-select:focus {
border-color:#2469d6; box-shadow:0 0 4px #226ad688;
}
.table td a { color:#2469d6; font-weight:600; text-decoration:underline; }
@media (max-width:1200px){.stats-row{grid-template-columns:repeat(2,1fr);}}
@media (max-width:768px){
.order-mgmt-bar{flex-direction:column;align-items:flex-start;gap:7px;padding:14px;}
.create-order-btn{margin-top:8px;}
.table th, .table td{font-size:13.5px;}
}
/* --- CREATE ORDER MODAL STYLES --- */
.create-order-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}
.create-order-modal.show {
display: flex;
}
.create-order-modal .modal-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
width: 95%;
max-width: 900px;
max-height: 90vh;
overflow-y: auto;
}
.create-order-modal .modal-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 20px 25px;
border-radius: 16px 16px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.create-order-modal .modal-title {
font-size: 1.4rem;
font-weight: 700;
margin: 0;
}
.create-order-modal .close-btn {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
font-size: 1.5rem;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.3s;
}
.create-order-modal .close-btn:hover {
background: rgba(255, 255, 255, 0.3);
}
.create-order-modal .modal-body {
padding: 25px;
background: #f8fafc;
}
/* Form styles inside modal */
.create-order-modal .form-label {
font-weight: 600;
color: #1d3159;
font-size: 15px;
margin-bottom: 5px;
}
.create-order-modal .form-control,
.create-order-modal .form-select {
border-radius: 8px;
background: #fff;
border: 1.2px solid #c7dbfa;
font-size: 15px;
font-weight: 500;
padding: 8px 12px;
}
.create-order-modal .form-control:focus,
.create-order-modal .form-select:focus {
border-color: #2469d6;
box-shadow: 0 0 0 3px rgba(36, 105, 214, 0.1);
}
.create-order-modal .btn-info {
background: #24a0eb;
border: none;
padding: 10px 20px;
font-weight: 600;
border-radius: 8px;
}
.create-order-modal .btn-info:hover {
background: #1d8fd8;
}
.create-order-modal .btn-success {
background: #28a745;
border: none;
padding: 12px 30px;
font-weight: 600;
border-radius: 8px;
}
.create-order-modal .btn-success:hover {
background: #218838;
}
.create-order-modal .btn-warning {
background: #ffc107;
border: none;
color: #000;
font-weight: 600;
}
.create-order-modal .btn-warning:hover {
background: #e0a800;
}
.create-order-modal .btn-danger {
background: #dc3545;
border: none;
}
.create-order-modal .btn-danger:hover {
background: #c82333;
}
/* Table styles inside modal */
.create-order-modal .table-wrapper {
max-height: 300px;
overflow-y: auto;
border: 1px solid #e9ecef;
border-radius: 8px;
}
.create-order-modal .table {
margin-bottom: 0;
background: #fff;
}
.create-order-modal .table th {
background: #f8f9fa;
font-weight: 600;
position: sticky;
top: 0;
z-index: 10;
}
@media (max-width: 768px) {
.create-order-modal .modal-card {
width: 98%;
margin: 10px;
}
.create-order-modal .modal-body {
padding: 15px;
}
.create-order-modal .modal-header {
padding: 15px 20px;
}
}
/* --- END MODAL STYLES --- */
/* ✅ Horizontal scroll container */
.table-wrapper {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
border-radius: 12px;
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
padding: 8px;
}
/* ✅ Stylish scrollbar */
.table-wrapper::-webkit-scrollbar {
height: 8px;
}
.table-wrapper::-webkit-scrollbar-thumb {
background: linear-gradient(90deg, #a7b8ff, #6c8eff);
border-radius: 10px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
background: linear-gradient(90deg, #5a78ff, #3f63e0);
}
.table-wrapper::-webkit-scrollbar-track {
background: #f1f1f1;
}
.table {
min-width: 1200px;
border-radius: 10px;
}
/* Success message styling */
.alert-success {
border-radius: 8px;
border-left: 4px solid #28a745;
margin-bottom: 15px;
}
/* Clear form button */
.clear-form-btn {
background: #6c757d;
border: none;
padding: 8px 16px;
font-weight: 600;
border-radius: 6px;
color: white;
margin-right: 10px;
}
.clear-form-btn:hover {
background: #5a6268;
}
/* ADDED: Spacing between content sections */
.order-mgmt-content-section {
margin-top: 20px;
}
/* MODERN ORDER DETAILS MODAL STYLES */
.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
.modal.show .modal-dialog {
transform: none;
}
.modal-content {
border: none;
border-radius: 20px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.modal-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-bottom: none;
padding: 11px 16px;
border-radius: 20px 20px 0 0;
}
.modal-title {
font-size: 1.5rem;
font-weight: 700;
color: white;
margin: 0;
}
.modal-header .btn-close {
filter: invert(1);
opacity: 0.8;
transition: all 0.3s ease;
}
.modal-header .btn-close:hover {
opacity: 1;
transform: rotate(90deg);
}
.modal-body {
padding: 30px;
background: #f8fafc;
max-height: 70vh;
overflow-y: auto;
}
/* Modern order details content */
.order-details-container {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
margin-bottom: 20px;
}
.order-details-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid #f1f3f4;
}
.order-id {
font-size: 1.4rem;
font-weight: 700;
color: #2c3e50;
background: linear-gradient(135deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.order-status {
padding: 8px 20px;
border-radius: 25px;
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
#orderDetailsBody {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
#orderDetailsBody > * {
width: 100%;
max-width: 100%;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-completed { background: #d1edff; color: #0c5460; }
.status-processing { background: #d4edda; color: #155724; }
.order-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 25px;
}
.info-card {
background: #f8f9fa;
padding: 20px;
border-radius: 12px;
border-left: 4px solid #667eea;
transition: all 0.3s ease;
}
.info-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.info-card h6 {
font-size: 0.9rem;
color: #6c757d;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.info-card p {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin: 0;
}
/* Modern table for order items */
.modern-table {
width: 100%;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.modern-table thead {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.modern-table th {
padding: 16px 12px;
color: white;
font-weight: 600;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.5px;
border: none;
}
.modern-table tbody tr {
transition: all 0.3s ease;
border-bottom: 1px solid #f1f3f4;
}
.modern-table tbody tr:hover {
background: #f8f9fa;
transform: translateX(5px);
}
.modern-table td {
padding: 14px 12px;
border: none;
color: #495057;
font-weight: 500;
}
.modern-table tbody tr:last-child {
border-bottom: none;
}
/* Summary section */
.order-summary {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 10px;
border-radius: 16px;
margin-top: 15px;
}
.summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.summary-item {
text-align: center;
padding: 15px;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.summary-item .label {
font-size: 0.9rem;
color: #6c757d;
margin-bottom: 5px;
}
.summary-item .value {
font-size: 1.3rem;
font-weight: 700;
color: #2c3e50;
}
/* Responsive design */
@media (max-width: 768px) {
.modal-header {
padding: 15px;
}
.modal-body {
padding: 20px;
}
.order-details-container {
padding: 20px;
}
.order-info-grid {
grid-template-columns: 1fr;
}
.info-card {
padding: 15px;
}
.modern-table {
font-size: 0.9rem;
}
.summary-grid {
grid-template-columns: 1fr;
}
}
</style>
<div class="container-fluid py-3">
<!-- DASHBOARD TITLE -->
<div class="dash-top-titlebox">
<div class="dash-title-main">Admin Dashboard</div>
<div class="dash-title-desc">Monitor operations and manage system</div>
</div>
<!-- STATS CARDS -->
<div class="stats-row-wrap">
<div class="stats-row">
<div class="stats-card stats-card-blue"><span class="stats-icon">📦</span><div class="stats-label">Total Shipments</div><div class="stats-value">1,247</div></div>
<div class="stats-card stats-card-blue"><span class="stats-icon">👥</span><div class="stats-label">Active Customers</div><div class="stats-value">342</div></div>
<div class="stats-card stats-card-green"><span class="stats-icon">💰</span><div class="stats-label">Total Revenue</div><div class="stats-value">₹123</div></div>
<div class="stats-card stats-card-red"><span class="stats-icon"></span><div class="stats-label">Pending Order</div><div class="stats-value">23</div></div>
</div>
<div class="stats-row">
<div class="stats-card stats-card-blue"><span class="stats-icon">📦</span><div class="stats-label">Total Orders</div><div class="stats-value">453</div></div>
<div class="stats-card stats-card-blue"><span class="stats-icon">🧑‍💼</span><div class="stats-label">Total Staff</div><div class="stats-value">125</div></div>
<div class="stats-card stats-card-blue"><span class="stats-icon">📦</span><div class="stats-label">Total Items</div><div class="stats-value">321</div></div>
<div class="stats-card stats-card-orng"><span class="stats-icon"></span><div class="stats-label">Inactive Customers</div><div class="stats-value">10</div></div>
</div>
</div>
<!-- ORDER MANAGEMENT -->
<div class="order-mgmt-box">
<div class="order-mgmt-bar">
<span class="order-mgmt-title"><i class="bi bi-table"></i> Order Management</span>
<button class="create-order-btn" id="openCreateOrderModal">
<i class="bi bi-plus-circle"></i> Create Order
</button>
</div>
<div class="order-mgmt-main">
<!-- 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 table-bordered align-middle text-center">
<thead class="table-light">
<tr>
<th>#</th>
<th>Order ID</th>
<th>Mark No</th>
<th>Origin</th>
<th>Destination</th>
<th>Total CTN</th>
<th>Total QTY</th>
<th>Total TTL/QTY</th>
<th>Total Amount ()</th>
<th>Total CBM</th>
<th>Total TTL CBM</th>
<th>Total KG</th>
<th>Total TTL KG</th>
<th>Status</th>
<th>Date</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@forelse($orders as $order)
<tr>
<td>{{ $order->id }}</td>
<td>
<a href="javascript:void(0)"
class="fw-semibold text-primary open-order-modal"
data-id="{{ $order->id }}">
{{ $order->order_id }}
</a>
</td>
<td>{{ $order->mark_no }}</td>
<td>{{ $order->origin }}</td>
<td>{{ $order->destination }}</td>
<td>{{ $order->ctn }}</td>
<td>{{ $order->qty }}</td>
<td>{{ $order->ttl_qty }}</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>
<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">
<i class="bi bi-eye"></i> View
</a>
</td>
</tr>
@empty
<tr>
<td colspan="16" class="text-muted">No orders found</td>
</tr>
@endforelse
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- CREATE ORDER MODAL -->
<div class="create-order-modal" id="createOrderModal">
<div class="modal-card">
<div class="modal-header">
<h5 class="modal-title">Create New Order</h5>
<button class="close-btn" id="closeCreateOrderModal">&times;</button>
</div>
<div class="modal-body">
@if(session('success'))
<div class="alert alert-success alert-dismissible fade show" role="alert">
{{ session('success') }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
@endif
<!-- CREATE ORDER FORM -->
<form action="{{ route('admin.orders.temp.add') }}" method="POST" id="createOrderForm">
@csrf
<div class="row g-3">
{{-- MARK NO --}}
<div class="col-md-4">
<label class="form-label">Mark No</label>
@if(session('temp_order_items'))
<input type="text" class="form-control" value="{{ session('mark_no') }}" disabled>
<input type="hidden" name="mark_no" value="{{ session('mark_no') }}">
@else
<select class="form-select" id="markNoSelect" name="mark_no" required>
<option value="">Select Mark No</option>
@foreach($markList as $mark)
<option value="{{ $mark->mark_no }}"
data-origin="{{ $mark->origin }}"
data-destination="{{ $mark->destination }}"
@if(session('mark_no') == $mark->mark_no) selected @endif>
{{ $mark->mark_no }} - {{ $mark->customer_name }}
</option>
@endforeach
</select>
@endif
</div>
{{-- ORIGIN --}}
<div class="col-md-4">
<label class="form-label">Origin</label>
<input type="text" class="form-control"
id="originField"
name="origin"
readonly required
value="{{ session('origin') }}">
</div>
{{-- DESTINATION --}}
<div class="col-md-4">
<label class="form-label">Destination</label>
<input type="text" class="form-control"
id="destinationField"
name="destination"
readonly required
value="{{ session('destination') }}">
</div>
</div>
<hr class="my-3">
{{-- ITEM INPUTS --}}
<h6 class="text-primary">Add Item</h6>
<div class="row g-3">
<div class="col-md-4">
<label class="form-label">Description</label>
<input type="text" class="form-control" name="description" id="itemDescription" required placeholder="Enter item description">
</div>
<div class="col-md-2"><label class="form-label">CTN</label><input type="number" name="ctn" id="itemCtn" class="form-control" placeholder="CTN"></div>
<div class="col-md-2"><label class="form-label">QTY</label><input type="number" name="qty" id="itemQty" class="form-control" placeholder="QTY"></div>
<div class="col-md-2"><label class="form-label">TTL/QTY</label><input type="number" name="ttl_qty" id="itemTtlQty" class="form-control" placeholder="TTL/QTY"></div>
<div class="col-md-2"><label class="form-label">Unit</label><input type="text" name="unit" id="itemUnit" class="form-control" placeholder="Unit"></div>
<div class="col-md-2"><label class="form-label">Price</label><input type="number" step="0.01" name="price" id="itemPrice" class="form-control" placeholder="Price"></div>
<div class="col-md-2"><label class="form-label">TTL Amount</label><input type="number" step="0.01" name="ttl_amount" id="itemTtlAmount" class="form-control" placeholder="TTL Amount"></div>
<div class="col-md-2"><label class="form-label">CBM</label><input type="number" step="0.001" name="cbm" id="itemCbm" class="form-control" placeholder="CBM"></div>
<div class="col-md-2"><label class="form-label">TTL CBM</label><input type="number" step="0.001" name="ttl_cbm" id="itemTtlCbm" class="form-control" placeholder="TTL CBM"></div>
<div class="col-md-2"><label class="form-label">KG</label><input type="number" step="0.001" name="kg" id="itemKg" class="form-control" placeholder="KG"></div>
<div class="col-md-2"><label class="form-label">TTL KG</label><input type="number" step="0.001" name="ttl_kg" id="itemTtlKg" class="form-control" placeholder="TTL KG"></div>
<div class="col-md-3"><label class="form-label">Shop No</label><input type="text" name="shop_no" id="itemShopNo" class="form-control" placeholder="Shop No"></div>
<div class="col-md-12 text-end mt-3">
<button type="button" class="btn btn-secondary clear-form-btn" id="clearForm">
<i class="bi bi-arrow-clockwise"></i> Clear Form
</button>
<button type="submit" class="btn btn-info" id="addItemBtn">
<i class="bi bi-plus-circle"></i> Add Item
</button>
</div>
</div>
</form>
{{-- RESET ORDER BUTTON --}}
@if(session('temp_order_items'))
<div class="text-start mt-2">
<form action="{{ route('admin.orders.temp.reset') }}" method="POST">
@csrf
<button type="submit" class="btn btn-warning btn-sm">
<i class="bi bi-arrow-repeat"></i> Reset Order
</button>
</form>
</div>
@endif
{{-- TEMPORARY ITEMS TABLE --}}
@if(session('temp_order_items') && count(session('temp_order_items')) > 0)
<hr class="my-4">
<h5 class="text-success">Temporary Items ({{ count(session('temp_order_items')) }} items)</h5>
<div class="table-wrapper">
<table class="table table-bordered text-center align-middle">
<thead class="table-light">
<tr>
<th>#</th>
<th>Description</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>Remove</th>
</tr>
</thead>
<tbody>
@foreach(session('temp_order_items') as $index => $item)
<tr>
<td>{{ $index + 1 }}</td>
<td>{{ $item['description'] }}</td>
<td>{{ $item['ctn'] }}</td>
<td>{{ $item['qty'] }}</td>
<td>{{ $item['ttl_qty'] }}</td>
<td>{{ $item['unit'] }}</td>
<td>{{ $item['price'] }}</td>
<td>{{ $item['ttl_amount'] }}</td>
<td>{{ $item['cbm'] }}</td>
<td>{{ $item['ttl_cbm'] }}</td>
<td>{{ $item['kg'] }}</td>
<td>{{ $item['ttl_kg'] }}</td>
<td>{{ $item['shop_no'] }}</td>
<td>
<form action="{{ route('admin.orders.temp.delete') }}" method="POST">
@csrf
<input type="hidden" name="index" value="{{ $index }}">
<button type="submit" class="btn btn-danger btn-sm">
<i class="bi bi-trash"></i>
</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="text-end mt-3">
<form action="{{ route('admin.orders.finish') }}" method="POST">
@csrf
<input type="hidden" name="mark_no" value="{{ session('mark_no') }}">
<input type="hidden" name="origin" value="{{ session('origin') }}">
<input type="hidden" name="destination" value="{{ session('destination') }}">
<button type="submit" class="btn btn-success btn-lg">
<i class="bi bi-check-circle"></i> Finish & Save Order
</button>
</form>
</div>
@endif
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const modal = document.getElementById('createOrderModal');
const openBtn = document.getElementById('openCreateOrderModal');
const closeBtn = document.getElementById('closeCreateOrderModal');
const clearFormBtn = document.getElementById('clearForm');
// Reset temp data function
const resetTempData = () => {
fetch('{{ route("admin.orders.temp.reset") }}', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
});
};
// Modal functions
const openModal = () => {
modal.classList.add('show');
document.body.style.overflow = 'hidden';
document.querySelector('.alert-success')?.remove();
clearForm();
};
const closeModal = () => {
modal.classList.remove('show');
document.body.style.overflow = '';
@if(session('temp_order_items') && count(session('temp_order_items')) > 0)
setTimeout(() => {
resetTempData();
window.location.reload();
}, 100);
@endif
};
// Clear form function
const clearForm = () => {
['itemDescription','itemCtn','itemQty','itemTtlQty','itemUnit','itemPrice','itemTtlAmount','itemCbm','itemTtlCbm','itemKg','itemTtlKg','itemShopNo']
.forEach(id => document.getElementById(id).value = '');
document.getElementById('itemDescription').focus();
};
// Event listeners
openBtn.addEventListener('click', openModal);
closeBtn.addEventListener('click', closeModal);
clearFormBtn.addEventListener('click', clearForm);
modal.addEventListener('click', (e) => e.target === modal && closeModal());
document.addEventListener('keydown', (e) => e.key === 'Escape' && modal.classList.contains('show') && closeModal());
// Mark No functionality
const markNoSelect = document.getElementById('markNoSelect');
if (markNoSelect) {
markNoSelect.addEventListener('change', function() {
const locked = {{ session('temp_order_items') ? 'true' : 'false' }};
if (locked) {
alert("You must finish the current order before changing Mark No.");
this.value = "{{ session('mark_no') }}";
return;
}
const option = this.options[this.selectedIndex];
document.getElementById('originField').value = option.dataset.origin || '';
document.getElementById('destinationField').value = option.dataset.destination || '';
});
}
// Auto open modal if temp items exist
@if(session('temp_order_items') && count(session('temp_order_items')) > 0)
modal.classList.add('show');
document.body.style.overflow = 'hidden';
clearForm();
@endif
// Reset confirmation
document.querySelectorAll('form[action="{{ route("admin.orders.temp.reset") }}"]')
.forEach(form => form.addEventListener('submit', e => {
if (!confirm('Are you sure you want to reset the current order? All temporary items will be lost.')) {
e.preventDefault();
}
}));
});
</script>
<!-- MODERN ORDER DETAILS MODAL -->
<div class="modal fade" id="orderDetailsModal" tabindex="-1">
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Order Details</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body" id="orderDetailsBody">
<p class="text-center text-muted">Loading...</p>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.open-order-modal').forEach(button => {
button.addEventListener('click', function () {
let id = this.dataset.id;
let modal = new bootstrap.Modal(document.getElementById('orderDetailsModal'));
document.getElementById('orderDetailsBody').innerHTML =
"<p class='text-center text-muted'>Loading...</p>";
modal.show();
fetch(`/admin/orders/view/${id}`)
.then(response => response.text())
.then(html => {
document.getElementById('orderDetailsBody').innerHTML = html;
})
.catch(() => {
document.getElementById('orderDetailsBody').innerHTML =
"<p class='text-danger text-center'>Failed to load order details.</p>";
});
});
});
});
</script>
@endsection