diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php index d6f3d01..c1df725 100644 --- a/resources/views/admin/dashboard.blade.php +++ b/resources/views/admin/dashboard.blade.php @@ -9,6 +9,7 @@ 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; diff --git a/resources/views/admin/layouts/app.blade.php b/resources/views/admin/layouts/app.blade.php index c557b5d..12c2fbe 100644 --- a/resources/views/admin/layouts/app.blade.php +++ b/resources/views/admin/layouts/app.blade.php @@ -17,7 +17,7 @@ /* ✨ Sidebar Glass + Animated Highlight Effect */ .sidebar { - width: 190px; + width: 200px; height: 100vh; background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 240, 255, 0.95)) !important; box-shadow: 2px 0 25px rgba(0, 0, 0, 0.08); @@ -29,6 +29,10 @@ display: flex; flex-direction: column; transition: all 0.3s ease-in-out; + position: fixed; + top: 0; + left: 0; + } .sidebar .logo { @@ -126,6 +130,7 @@ margin-top: 12px; font-weight: 500; transition: 0.3s ease; + margin-bottom: 20px; } .sidebar form button:hover { @@ -141,6 +146,7 @@ display: flex; flex-direction: column; width: calc(100vw - 190px); + margin-left: 190px; } header { diff --git a/resources/views/admin/shipments.blade.php b/resources/views/admin/shipments.blade.php index 2f42e6c..a6f7a3f 100644 --- a/resources/views/admin/shipments.blade.php +++ b/resources/views/admin/shipments.blade.php @@ -1,9 +1,152 @@ + + @extends('admin.layouts.app') @section('page-title', 'Shipment Management') @section('content') +
{{-- SUCCESS / ERROR MESSAGES --}} @@ -15,101 +158,127 @@
{{ session('error') }}
@endif - - + -
-
-
- Create Shipment -
-
- -
- -
- @csrf - -
- -
- - -
- -
- - -
- -
- - -
- -
- -
- -
Select Orders for Shipment
- - {{-- Orders Table --}} -
- - - - - - - - - - - - - - - - - @forelse($availableOrders as $order) - - - - - - - - - - - - - @empty - - - - @endforelse - -
SelectOrder IDMark NoOriginDestinationCTNQTYTTL QtyAmountKG
- - {{ $order->order_id }}{{ $order->mark_no }}{{ $order->origin }}{{ $order->destination }}{{ $order->ctn }}{{ $order->qty }}{{ $order->ttl_qty }}₹{{ number_format($order->ttl_amount, 2) }}{{ $order->ttl_kg }}
No available orders
-
- -
- -
- -
- -
+
+ 🔍 + + + +
+ + + + + @@ -190,9 +359,6 @@
- - - @@ -217,6 +383,7 @@ + @@ -317,4 +484,4 @@ function openShipmentDetails(id) { -@endsection +@endsection \ No newline at end of file