Files
alrahma_sunday_school_api/app/Services/Inventory/InventoryContextService.php
T
2026-03-10 18:21:08 -04:00

19 lines
367 B
PHP

<?php
namespace App\Services\Inventory;
use App\Models\Configuration;
class InventoryContextService
{
public function schoolYear(): string
{
return trim((string) (Configuration::getConfig('school_year') ?? ''));
}
public function semester(): string
{
return trim((string) (Configuration::getConfig('semester') ?? ''));
}
}