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

interestedCommercialProperty.blade.php 1.0KB

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>Interested in Commercial Property</h1>
  12. <h2>Details</h2>
  13. <p>Name : {{ $interested->name }}</p>
  14. <p>Email : {{ $interested->email }}</p>
  15. <p>Telephone : {{ $interested->phone }}</p>
  16. <p>Mobile : {{ $interested->mobile }}</p>
  17. <hr>
  18. <h2>Property Details</h2>
  19. <p>Property : {{ $property->name }}</p>
  20. <p>For : {{ $property->for }}</p>
  21. <p>Price : {{ $property->price }}</p>
  22. <p>Size : {{ $property->size }}</p>
  23. <p>Description : {{ $property->description }}</p>
  24. <p>Region : {{ $property->region }}</p>
  25. <p>Town : {{ $property->town }}</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>