@extends('master')
@section('title')
Timeshare search results
@stop
@section('styles')
@stop
@section('content')
@include('partials.menu')
Timeshare search Results
Resort |
Week Number |
Module |
Bedrooms |
Season |
Price |
Status |
Interested |
@foreach($timeshares as $timeshare)
{{ $timeshare->resort }} |
{{ $timeshare->week }} |
{{ $timeshare->module }} |
{{ $timeshare->bedrooms }} |
{{ $timeshare->season }} |
R {{ $timeshare->price }} |
{{ $timeshare->status }} |
|
@endforeach
@include('partials.footer')
@stop