📂 FileMgr
📍
/home/u462965992/domains/afsarnext.com/public_html/app/Views/admin/donors
✏️ Edit File: /home/u462965992/domains/afsarnext.com/public_html/app/Views/admin/donors/index.php
⬅ Kembali
<?= $this->include('admin/layout/header') ?> <?= $this->include('admin/layout/sidebar') ?> <main class="dashboard-main"> <?= $this->include('admin/layout/headermain') ?> <div class="dashboard-main-body"> <div class="breadcrumb mb-24 d-flex justify-content-between"> <h6 class="fw-semibold mb-0">Donor Management</h6> <a href="<?= base_url('admin/donors/add') ?>" class="btn btn-primary-600"> + Add Donor </a> </div> <div class="card h-100"> <div class="card-body p-0"> <table class="table bordered-table mb-0 data-table"> <thead> <tr> <th>#</th> <th>Full Name</th> <th>Mobile</th> <th>Email</th> <th>City</th> <th>Status</th> <th width="100">Action</th> </tr> </thead> <tbody> <?php foreach ($donors as $donor): ?> <tr> <td><?= $donor['id'] ?></td> <td><?= esc($donor['full_name']) ?></td> <td><?= esc($donor['mobile']) ?></td> <td><?= esc($donor['email']) ?></td> <td><?= esc($donor['city']) ?></td> <td> <?= $donor['status'] ? '<span class="bg-success-100 text-success-600 px-16 py-4 radius-4">Active</span>' : '<span class="bg-danger-100 text-danger-600 px-16 py-4 radius-4">Inactive</span>' ?> </td> <td> <div class="btn-group"> <button class="text-primary-light text-xl" data-bs-toggle="dropdown"> <i class="ri-more-2-fill"></i> </button> <ul class="dropdown-menu dropdown-menu-end p-12"> <li> <a class="dropdown-item" href="<?= base_url('admin/donors/edit/'.$donor['id']) ?>"> <i class="ri-edit-2-line"></i> Edit </a> </li> <li> <a class="dropdown-item text-danger" href="<?= base_url('admin/donors/delete/'.$donor['id']) ?>" onclick="return confirm('Delete this donor?')"> <i class="ri-delete-bin-6-line"></i> Delete </a> </li> </ul> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> <?= $this->include('admin/layout/footer') ?>
💾 Simpan File
Batal
⬅ Naik ke admin
2 item
Nama
Tipe
Ukuran
Diubah
Aksi
🐘
form.php
php
2.6 KB
2026-03-05 15:16
✏️ Edit
👁️ View
🗑 Hapus
🐘
index.php
php
2.3 KB
2026-03-05 15:16
✏️ Edit
👁️ View
🗑 Hapus