Old UniVate Website
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

timeshare-results.blade.php 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @extends('master')
  2. @section('title')
  3. Timeshare search results
  4. @stop
  5. @section('styles')
  6. <style>
  7. </style>
  8. @stop
  9. @section('content')
  10. @include('partials.menu')
  11. <h1 style="text-align:center;">Timeshare search Results</h1>
  12. <div class="row">
  13. <div class="large-12 colums">
  14. <table id="keywords" style="max-width: 100%;width: 100%;" cellspacing="0" cellpadding="0">
  15. <thead>
  16. <tr>
  17. <th><span>Resort</span></th>
  18. <th><span>Week Number</span></th>
  19. <th><span>Module</span></th>
  20. <th><span>Bedrooms</span></th>
  21. <th><span>Season</span></th>
  22. <th><span>Price</span></th>
  23. <th><span>Status</span></th>
  24. <th><span>Interested</span></th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. @foreach($timeshares as $timeshare)
  29. <tr>
  30. <td class="lalign">{{ $timeshare->resort }}</td>
  31. <td>{{ $timeshare->week }}</td>
  32. <td>{{ $timeshare->module }}</td>
  33. <td>{{ $timeshare->bedrooms }}</td>
  34. <td>{{ $timeshare->season }}</td>
  35. <td>R {{ $timeshare->price }}</td>
  36. <td>{{ $timeshare->status }}</td>
  37. <td><a href="/interested/{{ $timeshare->id }}"><i class="fa fa-flag" aria-hidden="true"></i></a></td>
  38. </tr>
  39. @endforeach
  40. </tbody>
  41. </table>
  42. </div>
  43. </div>
  44. <div class="row">
  45. <div class="large-12 columns">
  46. <?php echo $timeshares->links(); ?>
  47. </div>
  48. </div>
  49. <div class="row">
  50. <div class="large-12 columns">
  51. <a href="/commercial"><button style="margin-left:auto;margin-right:auto;display:block;">Back</button></a>
  52. </div>
  53. </div>
  54. @include('partials.footer')
  55. @stop