35251-vm/invoices.php
2025-10-26 16:34:12 +00:00

26 lines
750 B
PHP

<?php
$title = 'Invoices - Billing';
$page = 'invoices';
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">Invoices</h1>
<div class="btn-toolbar mb-2 mb-md-0">
<button type="button" class="btn btn-sm btn-primary">
<i class="bi bi-plus-circle"></i>
Create New Invoice
</button>
</div>
</div>
<div class="text-center py-5">
<i class="bi bi-journal-text" style="font-size: 4rem; color: #ccc;"></i>
<h2 class="mt-4">Coming Soon</h2>
<p class="text-muted">The invoices management page is under construction.</p>
</div>
<?php
require_once 'templates/footer.php';
?>