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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <a href="{{ route('download.vip.csv') }}" class="btn btn-primary">Download VIP Data</a>
  33. </div>
  34. <div>
  35. <p>General ({{count($generals)}})</p>
  36. <table class="table">
  37. <thead>
  38. <tr>
  39. <th>Nama</th>
  40. <th>Bilangan</th>
  41. <th>No Tel</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. @foreach ($generals as $general)
  46. <tr>
  47. <td>{{$general->name}}</td>
  48. <td>{{$general->member}}</td>
  49. <td>{{$general->phone}}</td>
  50. </tr>
  51. @endforeach
  52. </tbody>
  53. </table>
  54. </div>
  55. </div>
  56. </body>
  57. </html>