Files
alrahma_sunday_school_api/app/Services/ExtraCharges/ExtraChargesContextService.php
T
2026-03-09 02:52:13 -04:00

19 lines
367 B
PHP

<?php
namespace App\Services\ExtraCharges;
use App\Models\Configuration;
class ExtraChargesContextService
{
public function getSchoolYear(): string
{
return (string) (Configuration::getConfig('school_year') ?? '');
}
public function getSemester(): string
{
return (string) (Configuration::getConfig('semester') ?? '');
}
}