20 lines
534 B
PHP
20 lines
534 B
PHP
<?php
|
|
$title = 'Reports - Billing';
|
|
$page = 'reports';
|
|
require_once 'templates/header.php';
|
|
?>
|
|
|
|
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
|
|
<h1 class="h2">Reports</h1>
|
|
</div>
|
|
|
|
<div class="text-center py-5">
|
|
<i class="bi bi-graph-up" style="font-size: 4rem; color: #ccc;"></i>
|
|
<h2 class="mt-4">Coming Soon</h2>
|
|
<p class="text-muted">The reports and analytics page is under construction.</p>
|
|
</div>
|
|
|
|
<?php
|
|
require_once 'templates/footer.php';
|
|
?>
|