index.blade.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @extends('admin.layout.master')
  2. @section('main_content')
  3. @include('admin.layout.nav')
  4. @include('admin.layout.sidebar')
  5. <div class="main-content">
  6. <section class="section">
  7. <div class="section-header justify-content-between">
  8. <h1>Tours</h1>
  9. <div class="ml-auto">
  10. <a href="{{ route('admin_tour_create') }}" class="btn btn-primary"><i class="fas fa-plus"></i> Add New</a>
  11. </div>
  12. </div>
  13. <div class="section-body">
  14. <div class="row">
  15. <div class="col-12">
  16. <div class="card">
  17. <div class="card-body">
  18. <div class="table-responsive">
  19. <table class="table table-bordered" id="example1">
  20. <thead>
  21. <tr>
  22. <th>SL</th>
  23. <th>Package Info</th>
  24. <th>Tour Start</th>
  25. <th>Tour End</th>
  26. <th>Booking End</th>
  27. <th>Total Seat</th>
  28. <th>Booking</th>
  29. <th>Action</th>
  30. </tr>
  31. </thead>
  32. <tbody>
  33. @foreach($tours as $tour)
  34. <tr>
  35. <td>{{ $loop->iteration }}</td>
  36. <td>
  37. {{ $tour->package->name }}<br>
  38. <a href="{{ route('package',$tour->package->slug) }}" target="_blank">See Detail</a>
  39. </td>
  40. <td>{{ $tour->tour_start_date }}</td>
  41. <td>{{ $tour->tour_end_date }}</td>
  42. <td>{{ $tour->booking_end_date }}</td>
  43. <td>
  44. @if($tour->total_seat == -1)
  45. Unlimited
  46. @else
  47. {{ $tour->total_seat }}
  48. @endif
  49. </td>
  50. <td>
  51. <a href="{{ route('admin_tour_booking',[$tour->id,$tour->package->id]) }}" class="btn btn-success btn-sm">Booking Information</a>
  52. </td>
  53. <td class="pt_10 pb_10">
  54. <a href="{{ route('admin_tour_edit',$tour->id) }}" class="btn btn-primary"><i class="fas fa-edit"></i></a>
  55. <a href="{{ route('admin_tour_delete',$tour->id) }}" class="btn btn-danger" onClick="return confirm('Are you sure?');"><i class="fas fa-trash"></i></a>
  56. </td>
  57. </tr>
  58. @endforeach
  59. </tbody>
  60. </table>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </section>
  68. </div>
  69. @endsection