Complete Phase 1: MVC, DB migrations, Auth, RBAC, Security, and Views

This commit is contained in:
Hamza-Ayed
2026-06-05 00:56:41 +03:00
parent 7ffbc8bafa
commit bed7624ae9
51 changed files with 3295 additions and 0 deletions

11
config/app.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
return [
'name' => $_ENV['APP_NAME'] ?? 'ScoutIQ',
'env' => $_ENV['APP_ENV'] ?? 'production',
'debug' => filter_var($_ENV['APP_DEBUG'] ?? false, FILTER_VALIDATE_BOOLEAN),
'url' => $_ENV['APP_URL'] ?? 'https://scoutiq.intaleqapp.com',
'key' => $_ENV['APP_KEY'] ?? 'base64:3uFzGf9o8+D+U0mC4/3K1y4m81Qj7G6qTzS=',
'timezone' => 'Asia/Riyadh',
'log_path' => __DIR__ . '/../storage/logs/app.log',
];