@extends('layouts.master') @section('body_id', 'vendor_booking_stream_page') @section('content')
@include('frontend.vendor.partials.sidebar')

Live Booking Stream

Monitor pricing configurations, active occupancies, and manage pipeline filter statuses.

{{ $counters['new'] ?? $bookings->where('status', 'pending')->count() }}

New Requests

{{ $counters['active'] ?? $bookings->where('status', 'checked_in')->count() }}

Active Stay

{{ $counters['completed'] ?? $bookings->where('status', 'checked_out')->count() }}

Completed

{{ $counters['upcoming'] ?? $bookings->where('status', 'confirmed')->count() }}

Upcoming

@include('frontend.vendor.booking.partials.stream_table', ['filteredBookings' => $bookings])
@include('frontend.vendor.booking.partials.stream_table', ['filteredBookings' => $bookings->where('status', 'pending')])
@include('frontend.vendor.booking.partials.stream_table', ['filteredBookings' => $bookings->where('status', 'confirmed')])
@include('frontend.vendor.booking.partials.stream_table', ['filteredBookings' => $bookings->where('status', 'checked_in')])
@include('frontend.vendor.booking.partials.stream_table', ['filteredBookings' => $bookings->where('status', 'checked_out')])
@endsection