%PDF- %PDF-
Direktori : /var/www/html/hr/api/app/Http/Middleware/ |
Current File : /var/www/html/hr/api/app/Http/Middleware/ModuleCheck.php |
<?php namespace App\Http\Middleware; use Closure; class ModuleCheck { public function handle($request, Closure $next) { /*$module = Module::getByCode($module); if (!$module) { throw new ModuleNotImplementedException(); } if (!$module->is_enabled) { throw new ModuleNotEnabledException(); }*/ return $next($request); } }