Stabilize modular school API scaffold

This commit is contained in:
root
2026-05-29 17:49:39 -04:00
parent e362f68d8d
commit f55213a3df
18 changed files with 822 additions and 76 deletions
+9 -1
View File
@@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
@@ -8,7 +10,13 @@ class AppServiceProvider extends ServiceProvider
{
public function register(): void
{
//
$this->app->register(SchoolContextServiceProvider::class);
$this->app->register(SchoolCoreAttendanceServiceProvider::class);
$this->app->register(SchoolCoreFinanceServiceProvider::class);
$this->app->register(SchoolCoreStudentServiceProvider::class);
$this->app->register(SchoolCoreCommunicationServiceProvider::class);
$this->app->register(SchoolCoreReportingServiceProvider::class);
$this->app->register(IslamicSundaySchoolServiceProvider::class);
}
public function boot(): void