@if($row->duration)
{{__("Duration")}}
{{duration_format($row->duration,true)}}
@endif
@if(!empty($row->category_tour->name))
@php $cat = $row->category_tour->translateOrOrigin(app()->getLocale()) @endphp
{{__("Tour Type")}}
{{$cat->name ?? ''}}
@endif
@if($row->max_people)
{{__("Group Size")}}
@if($row->max_people > 1)
{{ __(":number persons",array('number'=>$row->max_people)) }}
@else
{{ __(":number person",array('number'=>$row->max_people)) }}
@endif
@endif
@if(!empty($row->location->name))
@php $location = $row->location->translateOrOrigin(app()->getLocale()) @endphp
{{__("Location")}}
{{$location->name ?? ''}}
@endif