|
@@ -0,0 +1,54 @@
|
|
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
|
+
|
|
9
|
+ @vite(['resources/css/app.css','resources/js/app.js'])
|
|
10
|
+</head>
|
|
11
|
+<body class="bg-babyblue">
|
|
12
|
+ <div class="section flex flex-col gap-10">
|
|
13
|
+ <div>
|
|
14
|
+ <p>VIP ({{count($vips)}})</p>
|
|
15
|
+ <table class="table">
|
|
16
|
+ <thead>
|
|
17
|
+ <tr>
|
|
18
|
+ <th>Nama</th>
|
|
19
|
+ <th>Bilangan</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
|
+ </tr>
|
|
28
|
+ @endforeach
|
|
29
|
+ </tbody>
|
|
30
|
+ </table>
|
|
31
|
+ </div>
|
|
32
|
+
|
|
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
|
+ </tr>
|
|
41
|
+ </thead>
|
|
42
|
+ <tbody>
|
|
43
|
+ @foreach ($generals as $general)
|
|
44
|
+ <tr>
|
|
45
|
+ <td>{{$general->name}}</td>
|
|
46
|
+ <td>{{$general->member}}</td>
|
|
47
|
+ </tr>
|
|
48
|
+ @endforeach
|
|
49
|
+ </tbody>
|
|
50
|
+ </table>
|
|
51
|
+ </div>
|
|
52
|
+ </div>
|
|
53
|
+</body>
|
|
54
|
+</html>
|