15 lines
482 B
PHP
15 lines
482 B
PHP
<?php
|
|
|
|
// App Configuration
|
|
define('APP_NAME', 'Enterprise Asset Management');
|
|
define('APP_URL', 'http://localhost/Antigravity%20Project/ติดตามสถานะของวัสดุ-ครุภัณฑ์%20ประจำปี/public');
|
|
|
|
// Database Configuration
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASS', '');
|
|
define('DB_NAME', 'asset_management_db');
|
|
|
|
// File Upload Path
|
|
define('UPLOAD_PATH', __DIR__ . '/../public/uploads/');
|