my-flyers.blade.php 1.5 KB

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