@foreach($routeFares as $item)
@if ($item->fare_type_id == $fareType->id)
@if ($item->desc)
Route Description:
{{ $item->desc }}
@endif
@if ($item->leg_desc && $routeType == 'operator')
Legs Description:
{{ $item->leg_desc }}
@endif
@if ($item->legs && $routeType == 'operator')
# of Legs:
{{ $item->legs }}
@endif
@endif
@endforeach
@endforeach