update project

This commit is contained in:
root
2026-05-30 01:11:35 -04:00
parent 3a0628ecc7
commit 2225f6bc72
9743 changed files with 1122482 additions and 59 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
declare(strict_types=1);
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
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
{
//
}
}