Old UniVate Website
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

paymentReference.blade.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <p>Dear Administrator</p>
  12. <p>Listing fee payment for a single timeshare listing from user {{ $user->name }} {{ $user->surname }} with email address {{ $user->email }} has been successfully payed through Pay Fast.</p>
  13. <p>Ref Number : TS{{ $user->id }}</p>
  14. <p>Timeshare details</p>
  15. @if($timeshare->resort=='Other')
  16. <p>Resort : {{ $timeshare->other }}</p>
  17. @else
  18. <p>Resort : {{ $timeshare->resort }}</p>
  19. @endif
  20. <p>Owner : {{ $timeshare->owner }}</p>
  21. <p>Unit : {{ $timeshare->unit }}</p>
  22. <p>Sleeps Max : {{ $timeshare->sleeps }}</p>
  23. <p>Module : {{ $timeshare->module }}</p>
  24. <p>Week : {{ $timeshare->week }}</p>
  25. <p>Bedrooms : {{ $timeshare->bedrooms }}</p>
  26. <p>Season : {{ $timeshare->season }}</p>
  27. <p>Region : {{ $timeshare->region }}</p>
  28. <p>Asking Price : {{ $timeshare->price }}</p>
  29. <p>Region : {{ $timeshare->region }}</p>
  30. <p>Regards,<br>
  31. The Uni-Vate Properties Team
  32. </p>
  33. <img src="https://www.univateproperties.co.za/images/signature.png" />
  34. </body>
  35. </html>