0% found this document useful (0 votes)
15 views2 pages

Table Class

The document contains a table with information about packaging items. The table has columns for item ID, packaging date, packaging number, item code, customer code, and action buttons to view, edit, or delete each item record. The table contains multiple item records.

Uploaded by

Ibnu Bang Bang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views2 pages

Table Class

The document contains a table with information about packaging items. The table has columns for item ID, packaging date, packaging number, item code, customer code, and action buttons to view, edit, or delete each item record. The table contains multiple item records.

Uploaded by

Ibnu Bang Bang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

 

 <table class="table table-striped table_bordered">


                                    <thead>
                                        <tr>
                                            <th class="text-center">ID</th>
                                            <th class="text-center">TGL
Pengemasan</th>
                                            <th class="text-center">NO
Pengemasan</th>
                                            <th class="text-center">Kode
Barang</th>
                                            <th class="text-center">Kode
Pelanggan</th>
                                            <th class="text-
center">lihat</th>
                                            <th class="text-
center">update</th>
                                            <th class="text-
center">hapus</th>
                                        </tr>
                                    </thead>
                                    <tbody >

                                        <?php foreach($data['jurnal'] as
$ibnu) : ?>
                                        <tr>
                                            <td ><?= $ibnu['id']; ?></td>
                                            <td ><?= $ibnu['tgl_pengemasan'];
?></td>
                                            <td ><?= $ibnu['no_pengemasan'];
?></td>
                                            <td ><?= $ibnu['kode_barang']; ?
></td>
                                            <td ><?= $ibnu['kode_pelanggan'];
?></td>
                                            <td>
                                                <a
                                                    href="<?= APLIKASI; ?
>/pengemasan_barang/satu_data_pengemasan/<?= $ibnu['id']; ?>"
                                                    style="color: azure;"
                                                    class="text-center">
                                                    <button type="button"
class="btn btn-primary">klik disini</a>
                                                </td>
                                                <td>
                                                    <a
                                                        href="<?= APLIKASI; ?
>/pengemasan_barang/perbaiki_akun/<?= $ibnu['id']; ?>"
                                                        style="color:
azure;">
                                                        <button type="button"
class="btn btn-warning">edit</a>
                                                    </td>
                                                    <td>
                                                        <a
                                                            href="<?=
APLIKASI; ?>/pengemasan_barang/hapus_akun/<?= $ibnu['id']; ?>"
                                                            onclick="return
confirm('ingin menghapus akun?')"
                                                            style="color:
azure;">
                                                            <button
type="button" class="btn btn-danger">hapus</a>
                                                        </td>

                                                    </tr>
                                                    <?php endforeach; ?>

                                                </tbody>
                                            </table>
                                        </div>
                                        <!-- /.card-body -->
                                    </div>
                                    <!-- /.card -->
                                </div>

You might also like