Wedding Invitation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

attendance.blade.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>{{config('app.name')}}</title>
  8. @vite(['resources/css/app.css','resources/js/app.js'])
  9. </head>
  10. <body class="bg-babyblue">
  11. <div class="section flex flex-col gap-10">
  12. <div>
  13. <p>VIP ({{count($vips)}})</p>
  14. <table class="table">
  15. <thead>
  16. <tr>
  17. <th>Nama</th>
  18. <th>Bilangan</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. @foreach ($vips as $vip)
  23. <tr>
  24. <td>{{$vip->name}}</td>
  25. <td>{{$vip->member}}</td>
  26. </tr>
  27. @endforeach
  28. </tbody>
  29. </table>
  30. </div>
  31. <div>
  32. <p>General ({{count($generals)}})</p>
  33. <table class="table">
  34. <thead>
  35. <tr>
  36. <th>Nama</th>
  37. <th>Bilangan</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. @foreach ($generals as $general)
  42. <tr>
  43. <td>{{$general->name}}</td>
  44. <td>{{$general->member}}</td>
  45. </tr>
  46. @endforeach
  47. </tbody>
  48. </table>
  49. </div>
  50. </div>
  51. </body>
  52. </html>