update project
This commit is contained in:
@@ -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
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user