@extends('layouts.app') @section('content') @if(session()->has('message'))
{{__('Travelers')}} : {{$departure->clients()->where('state','<',4)->count()}}>
{{__('Pax Available')}}: {{ $departure->pax_capacity - $departure->clients()->where('state','<',4)->count()}}
{{__('Pax Totals')}}: {{$departure->pax_capacity }}
{{__('Rooms')}}: {{ $departure->clients()->distinct('number_room')->count('number_room') }}
Dui
{{ $departure->clients()->distinct('number_room')->where('type_room',1)->count('number_room') }}
Doble
{{ $departure->clients()->distinct('number_room')->where('type_room',2)->count('number_room') }}
Twin
{{ $departure->clients()->distinct('number_room')->where('type_room',3)->count('number_room') }}
Triple
{{ $departure->clients()->distinct('number_room')->where('type_room',4)->count('number_room') }}
{{__('There are no passengers assigned')}}
@endif