27 lines
765 B
PHP
27 lines
765 B
PHP
<?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
|
|
{
|
|
//
|
|
}
|
|
}
|