@if ($operatorRoutes && count($operatorRoutes)) @foreach($operatorRoutes as $operatorRoute) @endforeach @endif @if ($rlsRoutes && count($rlsRoutes)) @foreach($rlsRoutes as $rlsRoute) @endforeach @endif @if ((!$operatorRoutes || !count($operatorRoutes)) && (!$rlsRoutes || !count($rlsRoutes))) @endif
Operator Route Type # of Legs Duration One Way Cost Est. Round Trip Cost Est. Select Route
{{ Str::limit($operatorRoute['operator'], 14, '...') }} {{ strtr($operatorRoute['type'], App\Models\BaseModel::ROUTE_TYPES)}} {{ $operatorRoute['adStd'] ? $operatorRoute['adStd']->legs : ''}} {{ $operatorRoute['adStd'] ? $operatorRoute['adStd']->dur_short : ''}} @if($operatorRoute['adStd']){{ number_format($operatorRoute['adStd']->oneway_cost, 2, '.', ',') }} {{ $operatorRoute['adStd']->route->operator->currency->code }}@endif @if($operatorRoute['adStd'] && $operatorRoute['adStd']->round_cost > 0){{ number_format($operatorRoute['adStd']->round_cost, 2, '.', ',') }} {{ $operatorRoute['adStd']->route->operator->currency->code }}@endif
{{ Str::limit($rlsRoute['operator'], 14, '...') }} {{ strtr($rlsRoute['type'], App\Models\BaseModel::ROUTE_TYPES)}} {{ $rlsRoute['legsCount'] }} {{ $rlsRoute['fare']->summary_duration }} @if ($rlsRoute['fare']->oneway_cost) {{ number_format($rlsRoute['fare']->oneway_cost, 2, '.', ',') }} {{ $rlsRoute['fare']->oneWayCurrency->code }} @endif @if ($rlsRoute['fare']->round_cost && $rlsRoute['fare']->round_cost > 0) {{ number_format($rlsRoute['fare']->round_cost, 2, '.', ',') }} {{ $rlsRoute['fare']->roundCostCurrency->code }} @endif

No results