Files
laravel_school_api_old/app/helpers.php
T
2026-05-29 04:33:03 -04:00

14 lines
297 B
PHP

<?php
declare(strict_types=1);
use App\Domain\SchoolCore\Context\SchoolContext;
use App\Domain\SchoolCore\Context\SchoolContextStore;
if (! function_exists('school_context')) {
function school_context(): SchoolContext
{
return app(SchoolContextStore::class)->current();
}
}