@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')])