my-flyers.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @extends ('layouts/template')
  2. @section('content')
  3. <div id="my-flyers" class="mcp-theme-1">
  4. <div class="card-body">
  5. <div class="mcp-theme-1">
  6. <div class="card">
  7. <div class="card-header px-3 py-2 d-flex align-items-center">
  8. <strong class="text-nowrap">
  9. <i class="fas fa-clipboard"></i>
  10. Flyers
  11. </strong>
  12. </div>
  13. <div class="card-body p-0">
  14. <table class="table table-sm table-striped p-0 m-0">
  15. <thead class="bg-light">
  16. <tr>
  17. <th class="border-0">Title</th>
  18. <th class="border-0">template</th>
  19. <th class="border-0">url</th>
  20. <th class="border-0">Status</th>
  21. <th class="border-0">&nbsp;</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. @foreach($flyerTemplates as $flyer)
  26. <tr>
  27. <td>{{ $flyer->title }}</td>
  28. <td>{{ $flyer->template }}</td>
  29. <td><a href="{{ $flyer->url }}" target="_blank" native>{{ $flyer->url }}</a></td>
  30. <td>{{ $flyer->active ? 'ACTIVE':'INACTIVE' }}</td>
  31. <td></td>
  32. </tr>
  33. @endforeach
  34. </tbody>
  35. </table>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. @endsection