13 lines
351 B
PHP
13 lines
351 B
PHP
<?php
|
|
require_once __DIR__ . '/includes/layout/header.php';
|
|
|
|
// Check if user is logged in (if not already handled in header or config)
|
|
// Access control can be added here
|
|
|
|
$section = 'pharmacy_reports';
|
|
|
|
// Include the content page
|
|
require_once __DIR__ . '/includes/pages/pharmacy_reports.php';
|
|
|
|
require_once __DIR__ . '/includes/layout/footer.php';
|