@extends('frontends.layouts.index') @section('content')

{{ __('Tours') }}

{{ __('Reliable, Comfortable, Relax') }}

@foreach($tours as $row)
(75)

{{ $row->getSelfTranslation('title') }}

{{ $row->short_description }}

    @if($row->meal_provided)
  • {{ _('Meal') }}

  • @endif @if($row->hotel_provided)
  • {{ _('Hotel') }}

  • @endif @if($row->transport_provided)
  • {{ _('Transport') }}

  • @endif @if($row->accessibiliy_provided)
  • {{ _('Accessibiliy') }}

  • @endif @if($row->tour_guide_provided)
  • {{ _('Tour guide') }}

  • @endif

@if($row->attachment_brochure)

{{ __('Download Brochure (English)') }}

@endif @if($row->attachment_brochure_ch)

{{ __('Download Brochure (Chinese)') }}

@endif
{{ App\Setting::currency_symbol() }} @if($row->first_discounted_price > 0) {{ number_format($row->first_discounted_price) }} {{ App\Setting::currency_symbol() }} {{ number_format($row->first_price) }} @else {{ number_format($row->first_price) }} @endif *{{ __('Per person') }}

{{ __('Details') }}

@endforeach
{{ $tours->appends(['layout'=>$request->input('layout', 'list')])->links() }}
@stop @section('script') @stop