= $this->extend('layout/management_layout') ?>
= $this->section('content') ?>
administrator Profiles
| Name |
Email |
Role |
Status |
Actions |
'John Doe', 'email' => 'john.doe@example.com', 'role' => 'Super administrator', 'status' => 'Active'],
['name' => 'Jane Smith', 'email' => 'jane.smith@example.com', 'role' => 'administrator', 'status' => 'Inactive'],
['name' => 'Emily Johnson', 'email' => 'emily.johnson@example.com', 'role' => 'administrator', 'status' => 'Active'],
// Add more profiles as needed
];
foreach ($administratorProfiles as $profile) {
echo "
| {$profile['name']} |
{$profile['email']} |
{$profile['role']} |
{$profile['status']} |
Edit
Delete
|
";
}
?>
= $this->endSection() ?>