Old UniVate Website
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

lombardy.blade.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. @extends('master')
  2. @section('title', 'Lombardy Business Park' )
  3. @section('description', '')
  4. @section('keywords', '')
  5. @section('content')
  6. <div class="container-fluid">
  7. <div class="row">
  8. <div class="col-md-7 offset-md-1">
  9. <h1 class="my-4">Lombardy Business Park</h1>
  10. </div>
  11. </div>
  12. <div class="row">
  13. <div class="col-md-7 offset-md-1">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <table class="table table-bordered table-hover table-striped">
  17. <thead>
  18. <tr>
  19. <th>Size</th>
  20. <th>Price ex VAT</th>
  21. <th>Suburb</th>
  22. <th>Unit</th>
  23. <th>Status</th>
  24. <td>Ref</td>
  25. <th>Interested?</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. @foreach($lombardy as $unit)
  30. <tr>
  31. <td>{{ $unit->size }}</td>
  32. <td>R {{ number_format($unit->price, 2) }}</td>
  33. <td>{{ $unit->surburb }}</td>
  34. <td>{{ $unit->unit }}</td>
  35. <td>{{ $unit->status2 }}</td>
  36. <td>{{ $unit->ref }}</td>
  37. <td><a href="/lombardy-enquiry/{{ $unit->id }}"><i class="fa fa-flag" aria-hidden="true"></i> More Info</a></td>
  38. </tr>
  39. @endforeach
  40. </tbody>
  41. </table>
  42. <?php echo $lombardy->links(); ?>
  43. </div>
  44. <div class="col-md-12 mb-4">
  45. <a class="btn btn-blue" href="javascript:history.back()">Back</a>
  46. </div>
  47. </div>
  48. <div class="row mb-4">
  49. <div class="col-md-4">
  50. <img class="img-fluid" src="/images/commercial/lom1.jpg" alt="Lombardy Business Park Image1" />
  51. </div>
  52. <div class="col-md-4">
  53. <img class="img-fluid" src="/images/commercial/lom2.jpg" alt="Lombardy Business Park Image2" />
  54. </div>
  55. <div class="col-md-4">
  56. <img class="img-fluid" src="/images/commercial/lom3.jpg" alt="Lombardy Business Park Image3" />
  57. </div>
  58. </div>
  59. <div class="row my-4">
  60. <div class="col-md-12">
  61. <p>
  62. These units are filling up quickly, so don’t miss out! Set at the centre of a bustling neighbourhood, these open spaces allow your business to choose a layout fit for your needs. The business park offers 24hr security with gated access and a back-up generator. The perfect address and office for the established professional or for the training centre of your dreams! View by appointment only.<br><br> To arrange a viewing contact Mynie: <strong>012 941 8521</strong> | <strong>076 647 1327</strong> | <a href="mailto:uvprop@oaks.co.za">uvprop@oaks.co.za</a>
  63. </p>
  64. </div>
  65. </div>
  66. <ul class="nav nav-tabs" id="myTab" role="tablist">
  67. @if($property->virtualtour)
  68. <li class="nav-item">
  69. <a class="nav-link active" id="virtual-tour-tab" data-toggle="tab" href="#virtual-tour" role="tab" aria-controls="virtual-tour" aria-selected="true">Virtual Tour</a>
  70. </li>
  71. @endif
  72. @if($property->directions)
  73. <li class="nav-item">
  74. <a class="nav-link @if($property->virtualtour == null) active @endif" id="directions-tab" data-toggle="tab" href="#directions" role="tab" aria-controls="directions" aria-selected="false">Directions</a>
  75. </li>
  76. @endif
  77. </ul>
  78. <div class="tab-content mb-4" id="myTabContent">
  79. @if($property->virtualtour)
  80. <div class="tab-pane fade show active" id="virtual-tour" role="tabpanel" aria-labelledby="virtual-tour-tab">
  81. <div class="embed-responsive embed-responsive-16by9">
  82. <iframe class="embed-responsive-item" src="{{ $property->virtualtour }}" allowfullscreen></iframe>
  83. </div>
  84. </div>
  85. @endif
  86. @if($property->directions)
  87. <div class="tab-pane fade @if($property->virtualtour == null) show active @endif" id="directions" role="tabpanel" aria-labelledby="directions-tab">
  88. <iframe src="{{ $property->directions }}" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
  89. </div>
  90. @endif
  91. </div>
  92. </div>
  93. <div class="col-md-3 pl-3 pl-md-5 sidebar">
  94. @include('partials.sidebar2')
  95. </div>
  96. </div>
  97. </div>
  98. <!-- interested -->
  99. @include('partials.interestedLombardy')
  100. @stop