Guest User

dashboard.blade.php

a guest
Sep 30th, 2021
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. <div class="content" style="padding-top: 1.875rem!important;">
  2. <div class="card" style="margin-bottom: 0rem;">
  3. <div class="card-body">
  4. <div class="table-responsive">
  5. <table class="table">
  6. <thead>
  7. <tr>
  8. <th>Store Name</th>
  9. <th>Status</th>
  10. <th>Action</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. @foreach ($restaurants as $restaurant)
  15. <tr>
  16. <td>{{$restaurant->name}}</td>
  17. <td>
  18. @if($restaurant->is_active)
  19. <span class="badge badge-success text-white text-capitalize">Open</span>
  20. @else
  21. <span class="badge badge-danger text-white text-capitalize">Close</span>
  22. @endif
  23. </td>
  24. <td>
  25. @csrf
  26. <div class="text-center">
  27. <div class="btn-group btn-group-justified" style="width:30px">
  28. @if($restaurant->is_active)
  29. <a href="{{ route('restaurant.disableRestaurant', $restaurant->id) }}"
  30. class="btn btn-danger" data-popup="tooltip"
  31. title="{{ __('storeDashboard.closeStoreToolTipMessage') }}" data-placement="bottom">
  32. <b><i class="icon-switch2"></i></b>
  33. </a>
  34. @else
  35. <a href="{{ route('restaurant.disableRestaurant', $restaurant->id) }}"
  36. class="btn btn-secondary" data-popup="tooltip"
  37. title="{{ __('storeDashboard.openStoreToolTipMessage') }}" data-placement="bottom">
  38. <b><i class="icon-switch2"></i></b>
  39. </a>
  40. @endif
  41. </div>
  42. </div>
  43. </td>
  44. </tr>
  45. @endforeach
  46. </tbody>
  47. </table>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
Advertisement
Add Comment
Please, Sign In to add comment