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.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en" data-theme="light">
  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 w-screen h-screen">
  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. <th>No Tel</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. @foreach ($vips as $vip)
  24. <tr>
  25. <td>{{$vip->name}}</td>
  26. <td>{{$vip->member}}</td>
  27. <td>{{$vip->phone}}</td>
  28. </tr>
  29. @endforeach
  30. </tbody>
  31. </table>
  32. </div>
  33. <div>
  34. <p>General ({{count($generals)}})</p>
  35. <table class="table">
  36. <thead>
  37. <tr>
  38. <th>Nama</th>
  39. <th>Bilangan</th>
  40. <th>No Tel</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. @foreach ($generals as $general)
  45. <tr>
  46. <td>{{$general->name}}</td>
  47. <td>{{$general->member}}</td>
  48. <td>{{$general->phone}}</td>
  49. </tr>
  50. @endforeach
  51. </tbody>
  52. </table>
  53. </div>
  54. </div>
  55. </body>
  56. </html>