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

{{ __('Your wishlist') }}

Ridiculus sociosqu cursus neque cursus curae ante scelerisque vehicula.

@foreach($wishlists as $wishlist)
(75)

{{ $wishlist->title }}

{!! Str::limit(nl2br($wishlist->description), 150, '...') !!}

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

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

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

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

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

  • @endif
{{ App\Setting::currency_symbol() }}{{ $wishlist->first_price }}* *{{ __('Per person') }}

{{ __('Details') }}

@endforeach
{{ $wishlists->links() }}
@stop @section('script') @stop