Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

README.md

Blame
  • v_user_transection_history.blade.php 1.94 KiB
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>User_transaction</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300&display=swap');
        </style>
    
    </head>
    
    <body>
        <div class="container">
        <h1>รายการบัญชี</h1>
        <h5>ดูรายการบัญชีย้อนหลัง และตรวจสอบรายละเอียดของบัญชี</h5>
            <div class="card">
                <h5 class="card-header">ข้อมูลบัญชี</h5>
                <div class="table-responsive text-nowrap">
                    <table class="table">
                        <thead>
                            <tr class="text-nowrap">
                                <th>วันที่ทำรายการ</th>
                                <th>ประเภทรายการ</th>
                                <th>ยอดเงิน (บาท)</th>
                                <th>สถานะ</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <th scope="row">1</th>
                                <td>15 ม.ค. 2566 <br> 12.00 น.</td>
                                <td>การเติมเงิน</td>
                                <td>500</td>
                                <td>สำเร็จ</td>
                            </tr>
                            <tr>
                                <th scope="row">2</th>
                                <td>13 ม.ค. 2566</td>
                                <td>การเติมเงิน</td>
                                <td>1000</td>
                                <td>ล้มเหลว</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </body>
    
    </html>