MIF_E31212274/application/views/pembeli/index.php

42 lines
1.8 KiB
PHP

<?php $this->load->view('template/header'); ?>
<div class="container">
<div class="card my-5 text-dark bg-light mb-3">
<div class="card-header">Data Pembeli</div>
<div class="card-body">
<?= $this->session->flashdata('pesan'); ?>
<div class="table-responsive">
<table class="table" id="datatable" data-ordering="false">
<thead>
<tr>
<th>No</th>
<th>Nama Pembeli</th>
<th>Alamat</th>
<th>Email</th>
<th>No HP</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
<?php $no = 1;
foreach ($pembeli as $row) : ?>
<tr>
<td><?= $no++?></td>
<td><?= $row['nama_pembeli'] ?></td>
<td><?= $row['alamat'] ?></td>
<td><?= $row['email'] ?></td>
<td><?= $row['no_hp'] ?></td>
<td>
<a href="#" data-href="<?= base_url('home/hapus/' . $row['id_pembeli']); ?>" data-bs-toggle="modal" data-bs-target="#deleteModal" class="btn btn-danger btn-sm" title="Hapus">Hapus</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php $this->load->view('template/js'); ?>
<?php $this->load->view('template/footer'); ?>