{{ $all_room_type->type }} |
{{ $all_room_type->transactions_count }} |
{{ $all_room_type->no_of_guest ?? 0 }} |
@if ($all_room_type->transactions_count != 0)
{{ $all_room_type->total_days == 0 ? 1 : $all_room_type->total_days }}
|
@else
0 |
@endif
{{ $all_room_type->total_price }} |
@if (isset($confirmed_room_types[$index]))
{{ $confirmed_room_types[$index]->transactions_count }} |
@endif
@if (isset($confirmed_room_types[$index]))
{{ $confirmed_room_types[$index]->no_of_guest ?? 0 }} |
@endif
@if (isset($confirmed_room_types[$index]))
@if ($confirmed_room_types[$index]->transactions_count != 0)
{{ $confirmed_room_types[$index]->total_days == 0 ? 1 : $confirmed_room_types[$index]->total_days }}
|
@else
0 |
@endif
@endif
@if (isset($confirmed_room_types[$index]))
{{ $confirmed_room_types[$index]->total_price }}
|
@endif
@if (isset($cancelled_room_types[$index]))
{{ $cancelled_room_types[$index]->transactions_count ?? 0 }} |
@endif
@if (isset($cancelled_room_types[$index]))
{{ $cancelled_room_types[$index]->no_of_guest ?? 0 }} |
@endif
@if (isset($cancelled_room_types[$index]))
@if ($cancelled_room_types[$index]->transactions_count != 0)
{{ $cancelled_room_types[$index]->total_days == 0 ? 1 : $cancelled_room_types[$index]->total_days }}
|
@else
0 |
@endif
@endif
@if (isset($cancelled_room_types[$index]))
{{ $cancelled_room_types[$index]->total_price }}
|
@endif
@if (isset($pending_room_types[$index]))
{{ $pending_room_types[$index]->transactions_count ?? 0 }} |
@endif
@if (isset($pending_room_types[$index]))
{{ $pending_room_types[$index]->no_of_guest ?? 0 }} |
@endif
@if (isset($pending_room_types[$index]))
@if ($pending_room_types[$index]->transactions_count != 0)
{{ $pending_room_types[$index]->total_days == 0 ? 1 : $pending_room_types[$index]->total_days }}
|
@else
0 |
@endif
@endif
@if (isset($pending_room_types[$index]))
{{ $pending_room_types[$index]->total_price }}
|
@endif
@endforeach