Files
Kent-logistics-Laravel/resources/views/admin/dashboard.blade.php

1608 lines
43 KiB
PHP
Raw Normal View History

2025-11-06 17:09:52 +05:30
@extends('admin.layouts.app')
2025-11-12 19:44:04 +05:30
@section('page-title', 'Dashboard')
2025-11-06 17:09:52 +05:30
@section('content')
2025-11-12 19:56:06 +05:30
<style>
2025-11-21 16:15:10 +05:30
/* ===== GLOBAL RESPONSIVE STYLES ===== */
html, body {
overflow-x: hidden !important;
max-width: 100%;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
body, .container-fluid {
background: #f4f7fc;
}
.container-fluid {
padding-left: 15px;
padding-right: 15px;
}
/* ===== DASHBOARD TITLE ===== */
2025-11-12 19:56:06 +05:30
.dash-top-titlebox {
2025-11-21 16:15:10 +05:30
margin-bottom: 2px;
background: transparent;
padding-left: 3px;
padding-top: 2px;
2025-11-15 10:22:05 +05:30
margin-left: 0px;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.dash-title-main {
font-size: 1.54rem;
font-weight: 800;
letter-spacing: .018em;
color: #18213e;
margin-bottom: 2px;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.dash-title-desc {
font-size: 1rem;
color: #6577a3;
margin-bottom: 5px;
font-weight: 500;
letter-spacing: .01em;
}
2025-11-21 16:15:10 +05:30
/* ===== STATS CARDS - RESPONSIVE GRID ===== */
.stats-row-wrap {
margin-bottom: 33px;
}
2025-11-12 19:56:06 +05:30
.stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
margin-bottom: 14px;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.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;
2025-11-21 16:15:10 +05:30
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
overflow: hidden;
position: relative;
display: flex;
align-items: center;
gap: 14px;
padding: 18px 16px;
2025-11-12 19:56:06 +05:30
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;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.stats-card::after {
2025-11-21 16:15:10 +05:30
content:"";
position: absolute;
inset: 0;
border-radius: 16px;
pointer-events:none;
2025-11-12 19:56:06 +05:30
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;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.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;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.stats-icon {
2025-11-21 16:15:10 +05:30
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);
2025-11-12 19:56:06 +05:30
box-shadow:0 1.7px 13px #edf1fd38;
}
2025-11-21 16:15:10 +05:30
.stats-card-blue .stats-icon {
background:linear-gradient(135deg,#3492f8 55%,#1256cc 110%);
color:#fff;
2025-11-12 19:56:06 +05:30
}
2025-11-17 10:35:42 +05:30
2025-11-21 16:15:10 +05:30
.stats-card-green .stats-icon {
background:linear-gradient(135deg,#18ce77 60%,#08ac52 110%);
color:#fff;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
.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;
2025-11-12 19:56:06 +05:30
}
2025-11-12 11:56:43 +05:30
2025-11-21 16:15:10 +05:30
.stats-label {
font-size:13px;
color:#63709b;
font-weight:600;
letter-spacing:.28px;
}
.stats-value {
font-size:1.25rem;
font-weight:700;
color:#194073;
}
2025-11-12 19:56:06 +05:30
.stats-card:hover .stats-icon {
transform: scale(1.09) rotate(7deg);
box-shadow:0 0 13px #2396f33b;
}
2025-11-12 11:56:43 +05:30
2025-11-21 16:15:10 +05:30
/* ===== ORDER MANAGEMENT SECTION ===== */
2025-11-12 19:56:06 +05:30
.order-mgmt-box {
2025-11-21 16:15:10 +05:30
background: #fff;
border-radius:17px;
box-shadow:0 7px 38px #dde3fa77, 0 2px 9px #e5e7ff80;
margin-bottom: 33px;
margin-top: 10px;
padding-bottom: 0;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.order-mgmt-bar {
2025-11-21 16:15:10 +05:30
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;
2025-11-12 19:56:06 +05:30
box-shadow:0 1px 13px #ffe2a888;
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.order-mgmt-title {
2025-11-21 16:15:10 +05:30
font-size:1.32rem;
font-weight:800;
color:#2451af;
letter-spacing:.08em;
display: flex;
align-items: center;
gap: 11px;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
.order-mgmt-title i {
font-size: 1.12em;
color: #336ad3;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.create-order-btn {
background: linear-gradient(90deg,#226ad6,#46b4fd 123%);
2025-11-21 16:15:10 +05:30
padding:9px 26px;
font-weight:600;
border:none;
border-radius:9px;
color:#fff;
font-size:16.2px;
box-shadow: 0 2px 13px #dde7fa42;
2025-11-12 19:56:06 +05:30
transition: background 0.16s, box-shadow .17s;
2025-11-21 16:15:10 +05:30
display: flex;
align-items: center;
gap: 8px;
font-family: inherit;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.create-order-btn:hover {
background: linear-gradient(90deg,#3264f8,#3acfff 140%);
box-shadow:0 4px 25px #5ab8f880;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.card-body, .order-mgmt-main {
background: #fff;
border-radius: 0 0 17px 17px;
padding:25px;
margin-top: 15px;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.card {
border-radius:17px;
box-shadow:0 7px 29px #e7eefd8c;
border:none;
margin-bottom:23px!important;
margin-top: 15px;
}
2025-11-21 16:15:10 +05:30
/* ===== TABLE STYLES ===== */
.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;}
2025-11-17 10:35:42 +05:30
.table {
background:#fff;
border-radius:9px;
box-shadow:0 2px 12px #e2ebf941;
border-collapse: separate;
2025-11-21 16:15:10 +05:30
border-spacing: 0 2px;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table-striped tbody tr {
background: #fff;
2025-11-21 16:15:10 +05:30
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
margin-bottom: 2px;
2025-11-17 10:35:42 +05:30
transition: all 0.3s ease;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table-striped tbody tr:hover {
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
transform: translateY(-1px);
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table-striped tbody tr:nth-of-type(odd) {
background:#f9fafc;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table-striped tbody tr:nth-of-type(even) {
background:#ffffff;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table td {
padding: 12px 6px;
border: none;
position: relative;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table td:first-child {
border-radius: 6px 0 0 6px;
}
2025-11-21 16:15:10 +05:30
2025-11-17 10:35:42 +05:30
.table td:last-child {
border-radius: 0 6px 6px 0;
}
2025-11-21 16:15:10 +05:30
.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;
}
2025-11-12 19:56:06 +05:30
.form-control, .form-select {
2025-11-21 16:15:10 +05:30
border-radius:8px!important;
font-size:15.8px;
background: #f7f9fe;
border:1.2px solid #c7dbfa;
font-weight:500;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
2025-11-12 19:56:06 +05:30
.form-control:focus, .form-select:focus {
2025-11-21 16:15:10 +05:30
border-color:#2469d6;
box-shadow:0 0 4px #226ad688;
}
.table td a {
color:#2469d6;
font-weight:600;
text-decoration:underline;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
/* ===== 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;
}
.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;
2025-11-12 19:56:06 +05:30
}
2025-11-21 16:15:10 +05:30
.table {
min-width: 1200px;
border-radius: 10px;
2025-11-12 19:56:06 +05:30
}
2025-11-14 13:47:01 +05:30
2025-11-21 16:15:10 +05:30
/* ===== CREATE ORDER MODAL STYLES ===== */
2025-11-14 13:47:01 +05:30
.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;
}
.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;
}
.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;
}
2025-11-21 16:15:10 +05:30
/* ===== ORDER DETAILS MODAL STYLES ===== */
2025-11-17 10:35:42 +05:30
.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;
}
2025-11-27 19:39:36 +05:30
/* ===== PAGINATION STYLES ===== */
.pagination-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 15px;
padding: 12px 0;
border-top: 1px solid #eef3fb;
}
.pagination-info {
font-size: 13px;
color: #9ba5bb;
font-weight: 600;
}
.pagination-controls {
display: flex;
align-items: center;
gap: 8px;
}
.pagination-btn {
background: #fff;
border: 1px solid #e3eaf6;
color: #1a2951;
padding: 8px 12px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 32px;
}
.pagination-btn:hover:not(:disabled) {
background: #1a2951;
color: white;
border-color: #1a2951;
}
.pagination-btn:disabled {
background: #f8fafc;
color: #cbd5e0;
border-color: #e2e8f0;
cursor: not-allowed;
opacity: 0.6;
}
.pagination-page-btn {
background: #fff;
border: 1px solid #e3eaf6;
color: #1a2951;
padding: 6px 12px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
min-width: 36px;
text-align: center;
}
.pagination-page-btn:hover {
background: #1a2951;
color: white;
border-color: #1a2951;
}
.pagination-page-btn.active {
background: #1a2951;
color: white;
border-color: #1a2951;
}
.pagination-pages {
display: flex;
gap: 4px;
align-items: center;
}
.pagination-ellipsis {
color: #9ba5bb;
font-size: 13px;
padding: 0 4px;
}
.pagination-img-btn {
background: #fff;
border: 1px solid #e3eaf6;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 32px;
padding: 0;
}
.pagination-img-btn:hover:not(:disabled) {
background: #1a2951;
border-color: #1a2951;
}
.pagination-img-btn:disabled {
background: #f8fafc;
border-color: #e2e8f0;
cursor: not-allowed;
opacity: 0.5;
}
.pagination-img-btn img {
width: 16px;
height: 16px;
filter: brightness(0) saturate(100%) invert(26%) sepia(89%) saturate(748%) hue-rotate(201deg) brightness(93%) contrast(89%);
transition: filter 0.3s ease;
}
.pagination-img-btn:hover:not(:disabled) img {
filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(106%) contrast(101%);
}
.pagination-img-btn:disabled img {
filter: brightness(0) saturate(100%) invert(84%) sepia(8%) saturate(165%) hue-rotate(179deg) brightness(89%) contrast(86%);
}
2025-11-21 16:15:10 +05:30
/* ===== RESPONSIVE BREAKPOINTS ===== */
2025-11-17 10:35:42 +05:30
2025-11-21 16:15:10 +05:30
/* Laptop (1200px and below) */
@media (max-width: 1200px) {
.stats-row {
grid-template-columns: repeat(3, 1fr);
}
2025-11-17 10:35:42 +05:30
2025-11-21 16:15:10 +05:30
.table {
min-width: 1000px;
}
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
/* Tablet (992px and below) */
@media (max-width: 992px) {
.stats-row {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.order-mgmt-bar {
padding: 15px 20px;
}
.order-mgmt-title {
font-size: 1.2rem;
}
.create-order-btn {
padding: 8px 20px;
font-size: 15px;
}
.table {
min-width: 900px;
font-size: 0.9rem;
}
.table th,
.table td {
padding: 10px 5px;
}
2025-11-27 19:39:36 +05:30
.pagination-container {
flex-direction: column;
gap: 10px;
align-items: stretch;
}
.pagination-controls {
justify-content: center;
}
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
/* Mobile Landscape (768px and below) */
2025-11-17 10:35:42 +05:30
@media (max-width: 768px) {
2025-11-21 16:15:10 +05:30
.container-fluid {
padding-left: 10px;
padding-right: 10px;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
.dash-title-main {
font-size: 1.3rem;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
.dash-title-desc {
font-size: 0.9rem;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
.stats-row-wrap {
margin-bottom: 25px;
}
.stats-card {
padding: 15px 12px;
gap: 12px;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
.stats-icon {
width: 42px;
height: 42px;
font-size: 1.4rem;
}
.stats-value {
font-size: 1.1rem;
}
.stats-label {
font-size: 12px;
}
.order-mgmt-bar {
flex-direction: column;
align-items: flex-start;
gap: 10px;
padding: 12px 15px;
min-height: auto;
}
.create-order-btn {
width: 100%;
justify-content: center;
padding: 10px;
font-size: 15px;
}
.card-body, .order-mgmt-main {
padding: 20px 15px;
}
.table-wrapper {
padding: 5px;
border-radius: 8px;
}
.table {
min-width: 800px;
font-size: 0.85rem;
}
.table th,
.table td {
padding: 8px 4px;
}
.badge {
font-size: 0.75rem;
padding: 4px 8px;
}
.btn-sm {
padding: 4px 8px;
font-size: 0.75rem;
}
/* Modal adjustments for mobile */
2025-11-14 13:47:01 +05:30
.create-order-modal .modal-card {
width: 98%;
margin: 10px;
}
.create-order-modal .modal-body {
2025-11-17 10:35:42 +05:30
padding: 15px;
}
2025-11-14 13:47:01 +05:30
.create-order-modal .modal-header {
padding: 15px 20px;
2025-11-17 10:35:42 +05:30
}
2025-11-21 16:15:10 +05:30
.modal-body {
padding: 20px 15px;
}
.modal-header {
padding: 10px 15px;
2025-11-17 10:35:42 +05:30
}
}
2025-11-21 16:15:10 +05:30
/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
.container-fluid {
padding-left: 8px;
padding-right: 8px;
}
.dash-title-main {
font-size: 1.2rem;
}
.dash-title-desc {
font-size: 0.85rem;
}
.stats-row {
grid-template-columns: 1fr;
gap: 12px;
}
.stats-card {
padding: 12px 10px;
}
.stats-icon {
width: 38px;
height: 38px;
font-size: 1.3rem;
}
.stats-value {
font-size: 1rem;
}
.order-mgmt-title {
font-size: 1.1rem;
gap: 8px;
}
.order-mgmt-box {
border-radius: 12px;
margin-bottom: 25px;
}
.order-mgmt-bar {
border-radius: 12px 12px 0 0;
padding: 10px 12px;
}
.card-body, .order-mgmt-main {
padding: 15px 10px;
border-radius: 0 0 12px 12px;
}
.card {
border-radius: 12px;
margin-bottom: 20px !important;
}
.table {
min-width: 700px;
font-size: 0.8rem;
}
.table th,
.table td {
padding: 6px 3px;
}
.form-control, .form-select {
font-size: 14px;
padding: 6px 10px;
}
.create-order-modal .modal-card {
width: 100%;
margin: 5px;
border-radius: 12px;
}
.create-order-modal .modal-header {
padding: 12px 15px;
border-radius: 12px 12px 0 0;
}
.create-order-modal .modal-body {
padding: 12px;
}
/* Stack form columns on mobile */
.create-order-modal .row.g-3 > [class*="col-"] {
margin-bottom: 10px;
}
2025-11-18 14:35:58 +05:30
}
2025-11-21 16:15:10 +05:30
/* Small Mobile (400px and below) */
@media (max-width: 400px) {
.container-fluid {
padding-left: 5px;
padding-right: 5px;
}
.stats-card {
flex-direction: column;
text-align: center;
gap: 8px;
padding: 15px 8px;
}
.order-mgmt-title {
font-size: 1rem;
}
.create-order-btn {
font-size: 14px;
padding: 8px;
}
.table {
min-width: 650px;
}
.btn-sm {
font-size: 0.7rem;
padding: 3px 6px;
}
2025-11-18 14:35:58 +05:30
}
2025-11-21 16:15:10 +05:30
/* High-resolution displays */
@media (min-width: 1400px) {
.container-fluid {
max-width: 1400px;
margin: 0 auto;
}
.stats-row {
gap: 20px;
}
.stats-card {
padding: 20px;
}
2025-11-18 14:35:58 +05:30
}
2025-11-21 16:15:10 +05:30
/* Print styles */
@media print {
.create-order-btn,
.order-mgmt-bar {
display: none !important;
}
.stats-card {
break-inside: avoid;
}
2025-11-18 14:35:58 +05:30
}
2025-11-12 19:56:06 +05:30
</style>
2025-11-12 11:56:43 +05:30
2025-11-12 19:56:06 +05:30
<div class="container-fluid py-3">
2025-11-12 11:56:43 +05:30
2025-11-13 13:05:17 +05:30
<!-- DASHBOARD TITLE -->
2025-11-12 19:56:06 +05:30
<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>
2025-11-12 11:56:43 +05:30
2025-11-13 13:05:17 +05:30
<!-- STATS CARDS -->
2025-11-12 19:56:06 +05:30
<div class="stats-row-wrap">
<div class="stats-row">
2025-11-13 13:05:17 +05:30
<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>
2025-11-12 19:56:06 +05:30
</div>
<div class="stats-row">
2025-11-13 13:05:17 +05:30
<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>
2025-11-12 11:56:43 +05:30
</div>
</div>
2025-11-13 13:05:17 +05:30
<!-- ORDER MANAGEMENT -->
2025-11-12 19:56:06 +05:30
<div class="order-mgmt-box">
<div class="order-mgmt-bar">
<span class="order-mgmt-title"><i class="bi bi-table"></i> Order Management</span>
2025-11-14 13:47:01 +05:30
<button class="create-order-btn" id="openCreateOrderModal">
2025-11-12 19:56:06 +05:30
<i class="bi bi-plus-circle"></i> Create Order
</button>
2025-11-12 11:56:43 +05:30
</div>
2025-11-13 13:05:17 +05:30
2025-11-12 19:56:06 +05:30
<div class="order-mgmt-main">
2025-11-13 13:05:17 +05:30
<!-- RECENT ORDERS TABLE -->
<div class="card shadow-sm">
<div class="card-header bg-light">
<strong>Recent Orders</strong>
2025-11-27 19:39:36 +05:30
<span style="font-size:13px;color:#6577a3;margin-left:10px;">
Total orders: <span id="ordersCount">{{ $orders->count() }}</span>
</span>
2025-11-13 13:05:17 +05:30
</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>
2025-11-21 16:07:43 +05:30
<th>Actions</th>
2025-11-13 13:05:17 +05:30
</tr>
</thead>
2025-11-27 19:39:36 +05:30
<tbody id="ordersTableBody">
2025-11-13 13:05:17 +05:30
@forelse($orders as $order)
<tr>
<td>{{ $order->id }}</td>
<td>
2025-11-15 10:08:43 +05:30
<a href="javascript:void(0)"
class="fw-semibold text-primary open-order-modal"
data-id="{{ $order->id }}">
2025-11-13 13:05:17 +05:30
{{ $order->order_id }}
</a>
</td>
2025-11-21 16:15:10 +05:30
<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>
2025-11-27 19:39:36 +05:30
<!-- Pagination Controls -->
<div class="pagination-container">
<div class="pagination-info" id="pageInfo">Showing 1 to 10 of {{ $orders->count() }} entries</div>
<div class="pagination-controls">
<button class="pagination-img-btn" id="prevPageBtn" title="Previous page">
<!-- Left arrow SVG -->
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 12L6 8L10 4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div class="pagination-pages" id="paginationPages">
<!-- Page numbers will be inserted here -->
</div>
<button class="pagination-img-btn" id="nextPageBtn" title="Next page">
<!-- Right arrow SVG -->
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 4L10 8L6 12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
</div>
2025-11-21 16:15:10 +05:30
</div>
2025-11-13 13:05:17 +05:30
</div>
</div>
2025-11-12 11:56:43 +05:30
</div>
2025-11-06 17:09:52 +05:30
</div>
</div>
2025-11-13 13:05:17 +05:30
2025-11-14 13:47:01 +05:30
<!-- 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
2025-11-13 13:05:17 +05:30
2025-11-14 13:47:01 +05:30
<!-- 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>
2025-11-13 13:05:17 +05:30
2025-11-14 13:47:01 +05:30
{{-- 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>
2025-11-13 13:05:17 +05:30
2025-11-14 13:47:01 +05:30
{{-- 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>
2025-11-13 13:05:17 +05:30
2025-11-21 16:15:10 +05:30
<!-- 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>
2025-11-13 13:05:17 +05:30
<script>
2025-11-14 13:47:01 +05:30
document.addEventListener('DOMContentLoaded', function() {
const modal = document.getElementById('createOrderModal');
const openBtn = document.getElementById('openCreateOrderModal');
const closeBtn = document.getElementById('closeCreateOrderModal');
const clearFormBtn = document.getElementById('clearForm');
2025-11-27 19:39:36 +05:30
// Pagination state
let currentPage = 1;
const ordersPerPage = 10;
let allOrders = @json($orders->values());
// Initialize pagination
initializePagination();
2025-11-14 13:47:01 +05:30
// 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 || '';
});
2025-11-13 13:05:17 +05:30
}
2025-11-14 13:47:01 +05:30
// 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();
}
}));
2025-11-13 13:05:17 +05:30
2025-11-21 16:15:10 +05:30
// Order details modal functionality
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>";
});
2025-11-15 10:08:43 +05:30
});
});
2025-11-27 19:39:36 +05:30
/* ---------- Pagination Functions ---------- */
function initializePagination() {
renderOrdersTable(allOrders);
updatePaginationControls();
// Bind pagination buttons
document.getElementById('prevPageBtn').addEventListener('click', goToPreviousPage);
document.getElementById('nextPageBtn').addEventListener('click', goToNextPage);
}
function goToPreviousPage() {
if (currentPage > 1) {
currentPage--;
renderOrdersTable(allOrders);
updatePaginationControls();
}
}
function goToNextPage() {
const totalPages = Math.ceil(allOrders.length / ordersPerPage);
if (currentPage < totalPages) {
currentPage++;
renderOrdersTable(allOrders);
updatePaginationControls();
}
}
function updatePaginationControls() {
const totalPages = Math.ceil(allOrders.length / ordersPerPage);
const prevBtn = document.getElementById('prevPageBtn');
const nextBtn = document.getElementById('nextPageBtn');
const pageInfo = document.getElementById('pageInfo');
const paginationPages = document.getElementById('paginationPages');
prevBtn.disabled = currentPage === 1;
nextBtn.disabled = currentPage === totalPages || totalPages === 0;
// Update page info text
const startIndex = (currentPage - 1) * ordersPerPage + 1;
const endIndex = Math.min(currentPage * ordersPerPage, allOrders.length);
pageInfo.textContent = `Showing ${startIndex} to ${endIndex} of ${allOrders.length} entries`;
// Generate page numbers
paginationPages.innerHTML = '';
if (totalPages <= 7) {
// Show all pages
for (let i = 1; i <= totalPages; i++) {
addPageButton(i, paginationPages);
}
} else {
// Show first page, current page range, and last page
addPageButton(1, paginationPages);
if (currentPage > 3) {
paginationPages.innerHTML += '<span class="pagination-ellipsis">...</span>';
}
const start = Math.max(2, currentPage - 1);
const end = Math.min(totalPages - 1, currentPage + 1);
for (let i = start; i <= end; i++) {
addPageButton(i, paginationPages);
}
if (currentPage < totalPages - 2) {
paginationPages.innerHTML += '<span class="pagination-ellipsis">...</span>';
}
addPageButton(totalPages, paginationPages);
}
}
function addPageButton(pageNumber, container) {
const button = document.createElement('button');
button.className = 'pagination-page-btn';
if (pageNumber === currentPage) {
button.classList.add('active');
}
button.textContent = pageNumber;
button.addEventListener('click', () => {
currentPage = pageNumber;
renderOrdersTable(allOrders);
updatePaginationControls();
});
container.appendChild(button);
}
function renderOrdersTable(orders) {
const tbody = document.getElementById('ordersTableBody');
tbody.innerHTML = '';
if (!orders || orders.length === 0) {
tbody.innerHTML = '<tr><td colspan="16" class="text-muted">No orders found</td></tr>';
return;
}
// Calculate pagination
const startIndex = (currentPage - 1) * ordersPerPage;
const endIndex = startIndex + ordersPerPage;
const paginatedOrders = orders.slice(startIndex, endIndex);
paginatedOrders.forEach(order => {
const tr = document.createElement('tr');
tr.innerHTML = `
<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>${order.ttl_amount ? Number(order.ttl_amount).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 }) : '0.00'}</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">${order.status ? order.status.charAt(0).toUpperCase() + order.status.slice(1) : ''}</span>
</td>
<td>${new Date(order.created_at).toLocaleDateString('en-GB')}</td>
<td>
<a href="/admin/orders/${order.id}" class="btn btn-sm btn-outline-primary">
<i class="bi bi-eye"></i> View
</a>
</td>
`;
tbody.appendChild(tr);
// Re-bind order details modal for newly rendered rows
const orderLink = tr.querySelector('.open-order-modal');
if (orderLink) {
orderLink.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>";
});
});
}
});
}
2025-11-15 10:08:43 +05:30
});
</script>
2025-11-14 13:47:01 +05:30
@endsection