Old UniVate Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

timeshare.blade.php 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Calibri">
  4. <style>
  5. body {
  6. font-family:Calibri;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h1>New Timeshare Submission</h1>
  12. <h2>Details</h2>
  13. <p>Name : {{ $timeshare->names }}</p>
  14. <p>Email : {{ $timeshare->email }}</p>
  15. <p>Telephone : {{ $timeshare->phone }}</p>
  16. <p>Mobile : {{ $timeshare->mobile }}</p>
  17. <hr>
  18. <h2>Timeshare Details</h2>
  19. @if($timeshare->resort=='Other')
  20. <p>Resort : {{ $timeshare->other }}</p>
  21. @else
  22. <p>Resort : {{ $timeshare->resort }}</p>
  23. @endif
  24. <p>Owner : {{ $timeshare->owner }}</p>
  25. <p>Unit : {{ $timeshare->unit }}</p>
  26. <p>Sleeps Max : {{ $timeshare->sleeps }}</p>
  27. <p>Module : {{ $timeshare->module }}</p>
  28. <p>Week : {{ $timeshare->week }}</p>
  29. <p>Bedrooms : {{ $timeshare->bedrooms }}</p>
  30. <p>Season : {{ $timeshare->season }}</p>
  31. <p>Region : {{ $timeshare->region }}</p>
  32. <p>Asking Price : R {{ $timeshare->price }}</p>
  33. <p>Arrival Date : {{ $timeshare->fromDate }}</p>
  34. <p>Departure Date : {{ $timeshare->toDate }}</p>
  35. <h2>Share Transfer Information</h2>
  36. <p>Were you referred by an agent? : {{ $seller->referedBy }}</p>
  37. @if($seller->referedBy=='Yes')
  38. <p>Agent Name : {{ $seller->agentName }}</p>
  39. <p>Agency Name : {{ $timeshare->agency }}</p>
  40. @endif
  41. <p>All Levy Amounts for the current cycle have been paid in full : {{ $seller->paid }}</p>
  42. <p>Levy Amount : {{ $timeshare->levy }}
  43. @if($timeshare->spacebankedyear=='Yes')
  44. <p>My week is Space banked for the current year: Yes</p>
  45. <p>Space Bank Owner : {{ $timeshare->spacebankOwner }}
  46. @endif
  47. <p>My week is placed for Rental this year : {{ $seller->rental }}</p>
  48. <p>I/We bought the timeshare module/week on the following date : {{ $seller->date }}</p>
  49. <p>Current year occupation dates : {{ $seller->occupationDate1 }} to {{ $seller->occupationDate2 }}
  50. <p>The Purchase Price for which I/We bought timeshare module/week was : {{ $seller->purchasePrice }}</p>
  51. <p>The Selling Price for the timeshare module/week for which I/We want to sell is (Including Vat) : {{ $seller->sellingPrice }}</p>
  52. <p>Estate Agent’s commission agreed to (state Rand value) : {{ $seller->commission }}</p>
  53. <hr>
  54. <p>Regards,<br>
  55. The Uni-Vate Properties Team
  56. </p>
  57. <img src="https://www.univateproperties.co.za/images/signature.png" />
  58. </body>
  59. </html>