| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | <!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>{{config('app.name')}}</title>
    @vite(['resources/css/app.css','resources/js/app.js'])
</head>
<body>
    <div class="section flex flex-col gap-10 w-screen h-screen bg-babyblue">
        <div>
            <p>VIP ({{count($vips)}})</p>
            <table class="table">
                <thead>
                <tr>
                    <th>Nama</th>
                    <th>Bilangan</th>
                </tr>
                </thead>
                <tbody>
                @foreach ($vips as $vip)
                <tr>
                    <td>{{$vip->name}}</td>
                    <td>{{$vip->member}}</td>
                </tr>
                @endforeach
                </tbody>
            </table>
        </div>
        
        <div>
            <p>General ({{count($generals)}})</p>
            <table class="table">
                <thead>
                <tr>
                    <th>Nama</th>
                    <th>Bilangan</th>
                </tr>
                </thead>
                <tbody>
                @foreach ($generals as $general)
                <tr>
                    <td>{{$general->name}}</td>  
                    <td>{{$general->member}}</td>
                </tr>
                @endforeach
                </tbody>
            </table>
        </div>
    </div>
</body>
</html>
 |