🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:dashboard.php
<?php require APPROOT . '/views/layouts/admin_header.php'; ?> <div class="row g-4"> <div class="col-md-3"> <div class="card border-0 shadow-sm rounded-4 bg-white"> <div class="card-body p-4 text-center"> <i class="fas fa-shield-alt text-navy fs-1 mb-3"></i> <h2 class="fw-bold mb-1"><?php echo $data['services_count']; ?></h2> <p class="text-muted mb-0">Total Services</p> </div> </div> </div> <div class="col-md-3"> <div class="card border-0 shadow-sm rounded-4 bg-white"> <div class="card-body p-4 text-center"> <i class="fas fa-users text-gold fs-1 mb-3"></i> <h2 class="fw-bold mb-1"><?php echo $data['team_count']; ?></h2> <p class="text-muted mb-0">Team Members</p> </div> </div> </div> <div class="col-md-3"> <div class="card border-0 shadow-sm rounded-4 bg-white"> <div class="card-body p-4 text-center"> <i class="fas fa-comment-dots text-primary fs-1 mb-3"></i> <h2 class="fw-bold mb-1"><?php echo $data['testimonials_count']; ?></h2> <p class="text-muted mb-0">Testimonials</p> </div> </div> </div> <div class="col-md-3"> <div class="card border-0 shadow-sm rounded-4 bg-white"> <div class="card-body p-4 text-center"> <i class="fas fa-envelope text-success fs-1 mb-3"></i> <h2 class="fw-bold mb-1"><?php echo $data['messages_count']; ?></h2> <p class="text-muted mb-0">New Messages</p> </div> </div> </div> </div> <div class="row mt-5"> <div class="col-12"> <div class="card border-0 shadow-sm rounded-4"> <div class="card-header bg-white border-bottom py-3"> <h5 class="mb-0 font-outfit fw-bold text-navy">Welcome to Dashboard</h5> </div> <div class="card-body p-4"> <p>Use the sidebar navigation to manage website contents.</p> <div class="alert alert-info"> <i class="fas fa-info-circle me-2"></i> For the scope of this project, full CRUD implementation for all sections requires additional views and models which would be quite extensive. However, the MVC structure supports it seamlessly. </div> </div> </div> </div> </div> <?php require APPROOT . '/views/layouts/admin_footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder