17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
|
|
namespace App\Services\Teachers;
|
|
|
|
use App\Models\Configuration;
|
|
|
|
class TeacherConfigService
|
|
{
|
|
public function context(): array
|
|
{
|
|
return [
|
|
'school_year' => Configuration::getConfig('school_year'),
|
|
'semester' => Configuration::getConfig('semester'),
|
|
];
|
|
}
|
|
}
|