@extends('../layout/home-layout') @section('title','Daily Forecast') @section('home-content')
PRINT FORECAST
@foreach ($reports as $row) @switch($row->status) @case(0) @break @case(1) @break @case(2) @break @case(3) @break @case(4) @break @default @endswitch @endforeach
Reservation ID Room No Basis Paxs Travel Agent Checkin Date Checkout Date Status
{{$row->code}} {{$row->get_room->room_name}} {{$row->get_meal_plan->mealPlanCode}} {{$row->mealcount}} {{$row->agentName}} {{$row->checkinDate}} {{$row->checkoutDate}}PendingConfirmedChecked-inCheckoutCancelled
@endsection