Logo Lanfrica

vanstevy98-lab/dgfp-gabon

Domain:

digital infrastructure

Record type:

software
Creator:
van
Host:
# πŸ‡¬πŸ‡¦ DGFP Gabon β€” SystΓ¨me de Gestion Administrative de la Fonction Publique Application web complΓ¨te pour la gestion administrative des agents de l'Γ‰tat gabonais. --- ## πŸ—οΈ Architecture du projet ``` gestion-fp-gabon/ β”œβ”€β”€ backend/ # API Laravel (PHP) β”‚ β”œβ”€β”€ app/ β”‚ β”‚ β”œβ”€β”€ Http/ β”‚ β”‚ β”‚ β”œβ”€β”€ Controllers/ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ AgentController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CongeController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ AvancementController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ FormationController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ MutationController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ EvaluationController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ DashboardController.php β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ RapportController.php β”‚ β”‚ β”‚ β”‚ └── AuthController.php β”‚ β”‚ β”‚ └── Middleware/ β”‚ β”‚ β”œβ”€β”€ Models/ β”‚ β”‚ β”‚ β”œβ”€β”€ Agent.php β”‚ β”‚ β”‚ β”œβ”€β”€ Ministere.php β”‚ β”‚ β”‚ β”œβ”€β”€ Corps.php β”‚ β”‚ β”‚ β”œβ”€β”€ Grade.php β”‚ β”‚ β”‚ β”œβ”€β”€ Direction.php β”‚ β”‚ β”‚ β”œβ”€β”€ Conge.php (inclut Avancement, Formation, Mutation, Evaluation) β”‚ β”‚ β”‚ └── User.php β”‚ β”‚ └── Services/ β”‚ β”‚ └── AgentService.php β”‚ β”œβ”€β”€ database/ β”‚ β”‚ β”œβ”€β”€ migrations/ β”‚ β”‚ β”‚ β”œβ”€β”€ ..._create_agents_table.php β”‚ β”‚ β”‚ └── ..._create_support_tables.php β”‚ β”‚ └── seeders/ β”‚ β”‚ └── DatabaseSeeder.php β”‚ └── routes/ β”‚ └── api.php β”‚ └── frontend/ # SPA Vue.js 3 β”œβ”€β”€ src/ β”‚ β”œβ”€β”€ main.js # Point d'entrΓ©e β”‚ β”œβ”€β”€ App.vue # Composant racine β”‚ β”œβ”€β”€ router/ β”‚ β”‚ └── index.js # Vue Router β”‚ β”œβ”€β”€ store/ β”‚ β”‚ └── modules/ β”‚ β”‚ β”œβ”€β”€ auth.js # Store Pinia authentification β”‚ β”‚ └── agents.js # Store Pinia agents β”‚ β”œβ”€β”€ services/ β”‚ β”‚ └── api.js # Axios + services API β”‚ β”œβ”€β”€ assets/ β”‚ β”‚ └── css/ β”‚ β”‚ └── main.css # Styles globaux (couleurs Gabon) β”‚ β”œβ”€β”€ components/ β”‚ β”‚ └── layout/ β”‚ β”‚ β”œβ”€β”€ AppSidebar.vue β”‚ β”‚ └── AppHeader.vue β”‚ └── views/ β”‚ β”œβ”€β”€ Login.vue β”‚ β”œβ”€β”€ Dashboard.vue β”‚ β”œβ”€β”€ agents/ β”‚ β”‚ …