admin.blade.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!doctype html>
  2. <head>
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  5. <meta name="description" content="">
  6. <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
  7. <meta name="generator" content="Jekyll v3.8.6">
  8. <title>Админка</title>
  9. <link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/checkout/">
  10. <!-- Bootstrap core CSS -->
  11. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
  12. <!-- Favicons -->
  13. <meta name="msapplication-config" content="/docs/4.4/assets/img/favicons/browserconfig.xml">
  14. <meta name="theme-color" content="#563d7c">
  15. <body>
  16. <div class="container">
  17. <div class="py-5 text-center">
  18. <h2>Данные зарегистрированных пользователей</h2>
  19. </div>
  20. </div>
  21. <div class="card-body">
  22. <table class="table table-striped task-table">
  23. <thead>
  24. <th>Фамилия</th>
  25. <th>Имя</th>
  26. <th>E-mail</th>
  27. <th>Адрес</th>
  28. <th>Страна</th>
  29. <th>Город</th>
  30. </thead>
  31. <tbody>
  32. @foreach($users as $user)
  33. <tr>
  34. <td class="table-text">
  35. <div>{{$user['lastName']}}</div>
  36. </td>
  37. <td class="table-text">
  38. <div>{{$user['firstName']}}</div>
  39. </td>
  40. <td class="table-text">
  41. <div>{{$user['email']}}</div>
  42. </td>
  43. <td class="table-text">
  44. <div>{{$user['address']}}</div>
  45. </td>
  46. <td class="table-text">
  47. <div>{{$user['country']}}</div>
  48. </td>
  49. <td class="table-text">
  50. <div>{{$user['state']}}</div>
  51. </td>
  52. </tr>
  53. @endforeach
  54. </tbody>
  55. </div>
  56. </body>