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.

residential-sale-listing.blade.php 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 Residential Property Sale Listing</h1>
  12. <h2>Contact Person Details</h2>
  13. <p>Name : {{ $residential->contact_person }}</p>
  14. <p>Email : {{ $residential->contact_email }}</p>
  15. <p>Contact Number : {{ $residential->contact_mobile }}</p>
  16. <hr>
  17. <h2>Property Details</h2>
  18. <p>Name : {{ $residential->name }}</p>
  19. <p>Reference Number : {{ $residential->ref }}</p>
  20. <p>Region : {{ $residential->region }}</p>
  21. <p>Town : {{ $residential->town }}</p>
  22. <p>Surburb : {{ $residential->surburb }}</p>
  23. <p>Property Type : {{ $residential->propertType }}</p>
  24. <p>Property Size : {{ $residential->size }}</p>
  25. <p>Bedrooms : {{ $residential->bedrooms }}</p>
  26. <p>Bathrooms : {{ $residential->bathrooms }}</p>
  27. <p>Description : {{ $residential->description }}</p>
  28. <p>Regards,<br>
  29. The Uni-Vate Properties Team
  30. </p>
  31. <img src="https://www.univateproperties.co.za/images/signature.png" />
  32. </body>
  33. </html>