@extends('master') @section('title', 'Resort' ) @section('description')@stop @section('keywords')@stop @section('content')

Timeshares to buy

@if($timeshares) @foreach($timeshares as $timeshare) @if($timeshare->fromDate==NULL) @else @endif @if($timeshare->toDate==NULL) @else @endif @endforeach
Resort Unit Week Module Bedrooms Season Arrival Departure Price inc VAT Status Interested?
{{ $timeshare->resort }} {{ $timeshare->unit }} {{ $timeshare->week }} {{ $timeshare->module }} {{ $timeshare->bedrooms }} {{ $timeshare->season }} - {{ \Carbon\Carbon::parse($timeshare->fromDate)->format('jS F Y') }} - {{ \Carbon\Carbon::parse($timeshare->toDate)->format('jS F Y') }}R{{ number_format($timeshare->setPrice, 2) }} {{ $timeshare->status }} Yes
@endif
@include('partials.interested') @stop