index.blade.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>Reviews</h1>
  9. </div>
  10. <div class="section-body">
  11. <div class="row">
  12. <div class="col-12">
  13. <div class="card">
  14. <div class="card-body">
  15. <div class="table-responsive">
  16. <table class="table table-bordered" id="example1">
  17. <thead>
  18. <tr>
  19. <th>SL</th>
  20. <th>Package</th>
  21. <th>User</th>
  22. <th>Rating</th>
  23. <th>Comment</th>
  24. <th>Action</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. @foreach($reviews as $item)
  29. <tr>
  30. <td>{{ $loop->iteration }}</td>
  31. <td>
  32. {{ $item->package->name }}<br>
  33. <a href="{{ route('package',$item->package->slug) }}" target="_blank">See Detail</a>
  34. </td>
  35. <td>
  36. {{ $item->user->name }}<br>
  37. {{ $item->user->email }}
  38. </td>
  39. <td>{{ $item->rating }}</td>
  40. <td>{{ $item->comment }}</td>
  41. <td class="pt_10 pb_10">
  42. <a href="{{ route('admin_review_delete',$item->id) }}" class="btn btn-danger" onClick="return confirm('Are you sure?');"><i class="fas fa-trash"></i></a>
  43. </td>
  44. </tr>
  45. @endforeach
  46. </tbody>
  47. </table>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </section>
  55. </div>
  56. @endsection