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.

commercial-sale-listing.blade.php 1.1KB

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