@extends('admin.layouts.base') @section('title', 'Warehouse Bookings Dashboard') @section('content')
Manage warehouse bookings and space utilization
| Warehouse | Bookings | Pending | Confirmed | Active | Space Utilization | Available Space | Actions |
|---|---|---|---|---|---|---|---|
{{ $stats['warehouse']->name }}{{ $stats['warehouse']->city }}, {{ $stats['warehouse']->state }} |
{{ $stats['total_bookings'] }} | @if($stats['pending'] > 0) {{ $stats['pending'] }} @else - @endif | @if($stats['confirmed'] > 0) {{ $stats['confirmed'] }} @else - @endif | @if($stats['active'] > 0) {{ $stats['active'] }} @else - @endif |
|
{{ number_format($stats['space']['available']) }} sqft | View Bookings |
|
No active warehouses found Create Warehouse |
|||||||