Bootstrap snippet and html example. bs4 payment list

Bootstrap 4.3.1 snippet "bs4 payment list" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: payment,list

HTML code

Clean, semantic HTML that powers this Bootstrap 4.3.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<div class="container">
    <div class="row">
        <div class="col-xl-12">
            <div class="card">
                <div class="card-body">
                    <h5 class="header-title pb-3 mt-0">Payments</h5>
                    <div class="table-responsive">
                        <table class="table table-hover mb-0">
                            <thead>
                                <tr class="align-self-center">
                                    <th>Project Name</th>
                                    <th>Client Name</th>
                                    <th>Payment Type</th>
                                    <th>Paid Date</th>
                                    <th>Amount</th>
                                    <th>Transaction</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr>
                                    <td>Product Devlopment</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="" class="thumb-sm rounded-circle mr-2"> Kevin Heal</td>
                                    <td>Paypal</td>
                                    <td>5/8/2018</td>
                                    <td>$15,000</td>
                                    <td><span class="badge badge-boxed badge-soft-warning">panding</span></td>
                                </tr>
                                <tr>
                                    <td>New Office Building</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="" class="thumb-sm rounded-circle mr-2"> Frank M. Lyons</td>
                                    <td>Paypal</td>
                                    <td>15/7/2018</td>
                                    <td>$35,000</td>
                                    <td><span class="badge badge-boxed badge-soft-primary">Success</span></td>
                                </tr>
                                <tr>
                                    <td>Market Research</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="" class="thumb-sm rounded-circle mr-2"> Angelo Butler</td>
                                    <td>Pioneer</td>
                                    <td>30/9/2018</td>
                                    <td>$45,000</td>
                                    <td><span class="badge badge-boxed badge-soft-warning">Panding</span></td>
                                </tr>
                                <tr>
                                    <td>Website &amp; Blog</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="" class="thumb-sm rounded-circle mr-2"> Phillip Morse</td>
                                    <td>Paypal</td>
                                    <td>2/6/2018</td>
                                    <td>$70,000</td>
                                    <td><span class="badge badge-boxed badge-soft-warning">Success</span></td>
                                </tr>
                                <tr>
                                    <td>Product Devlopment</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="" class="thumb-sm rounded-circle mr-2"> Kevin Heal</td>
                                    <td>Paypal</td>
                                    <td>5/8/2018</td>
                                    <td>$15,000</td>
                                    <td><span class="badge badge-boxed badge-soft-primary">panding</span></td>
                                </tr>
                                <tr>
                                    <td>New Office Building</td>
                                    <td><img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="" class="thumb-sm rounded-circle mr-2"> Frank M. Lyons</td>
                                    <td>Paypal</td>
                                    <td>15/7/2018</td>
                                    <td>$35,000</td>
                                    <td><span class="badge badge-boxed badge-soft-primary">Success</span></td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <!--end table-responsive-->
                    <div class="pt-3 border-top text-right"><a href="#" class="text-primary">View all <i class="mdi mdi-arrow-right"></i></a></div>
                </div>
            </div>
        </div>
    </div>
</div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 4.3.1 to keep the design, spacing, and responsiveness consistent.

body{
    background:#f5f5f5;
    margin-top:20px;
}
.card {
    border: none;
    -webkit-box-shadow: 1px 0 20px rgba(96,93,175,.05);
    box-shadow: 1px 0 20px rgba(96,93,175,.05);
    margin-bottom: 30px;
}
.table th {
    font-weight: 500;
    color: #827fc0;
}
.table thead {
    background-color: #f3f2f7;
}
.table>tbody>tr>td, .table>tfoot>tr>td, .table>thead>tr>td {
    padding: 14px 12px;
    vertical-align: middle;
}
.table tr td {
    color: #8887a9;
}
.thumb-sm {
    height: 32px;
    width: 32px;
}
.badge-soft-warning {
    background-color: rgba(248,201,85,.2);
    color: #f8c955;
}

.badge {
    font-weight: 500;
}
.badge-soft-primary {
    background-color: rgba(96,93,175,.2);
    color: #605daf;
}

Similar snippets

Bootstrap example and template. Shop categories

Shop categories

Bootstrap example and template. files list widget

files list widget

Bootstrap example and template. bs4 schedule list

bs4 schedule list

Bootstrap example and template. Shop Product List

Shop Product List

Bootstrap example and template. portfolio with category filter and masonry

portfolio with category filter and masonry

Bootstrap example and template. our history timeline

our history timeline

Bootstrap example and template. timeline with year and date

timeline with year and date

Bootstrap example and template. bs4 timeline

bs4 timeline

FAQ

How do I use this snippet?

Include Bootstrap 4.3.1, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 4.3.1.

Bootstrap example and template. bs4 payment list

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 13.6K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 4.3.1

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.3.1 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working