diff --git a/app/ClassLib/MiscLib.php b/app/ClassLib/MiscLib.php new file mode 100644 index 0000000..109ab7c --- /dev/null +++ b/app/ClassLib/MiscLib.php @@ -0,0 +1,20 @@ + '' + ]; + + return $template; + } +} \ No newline at end of file diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 577c658..cc64810 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -31,8 +31,11 @@ $routes->post('hr/addemp', 'HRController::addEmployee'); // Payroll Routes $routes->get('payroll', 'PayrollController::index'); -$routes->get('payroll/generatepayroll', 'PayrollController::generatePayroll'); -$routes->post('payroll/generatepayroll', 'PayrollController::generatePayroll'); +$routes->get('payroll/paygroup', 'PayrollController::payrollGroup'); +$routes->post('payroll/addpaygroup', 'PayrollController::addPayrollGroup'); + +$routes->get('payroll/emppaygrpassign', 'PayrollController::employeePayrollGroupAssignment'); +$routes->post('payroll/addemppaygrpassign', 'PayrollController::addEmployeePayrollGroupAssignment'); // Administrator Routes $routes->get('adminuser', 'AdministratorController::index'); diff --git a/app/Controllers/HRController.php b/app/Controllers/HRController.php index 69f2dcc..413405c 100644 --- a/app/Controllers/HRController.php +++ b/app/Controllers/HRController.php @@ -11,6 +11,7 @@ use App\Models\CompanyBranchModel; use App\Models\JobTitleModel; use App\Models\EmploymentStatusModel; use App\Models\EmployeeModel; +use App\Models\PayrollGroupModel; // Entities use App\Entities\CompanyDepartment; @@ -18,8 +19,12 @@ use App\Entities\CompanyBranch; use App\Entities\JobTitle; use App\Entities\EmploymentStatus; use App\Entities\Employee; +use App\Entities\PayrollGroup; use CodeIgniter\Shield\Entities\User; +// Class Library +use App\ClassLib\MiscLib; + class HRController extends BaseController { public function index() @@ -32,7 +37,7 @@ class HRController extends BaseController $companyDepartments = (new CompanyDepartmentModel())->findAll(); $companyDeptHTMLTable = new \CodeIgniter\View\Table(); - $companyDeptHTMLTable->setTemplate($this->adminLTETableTemplate()); + $companyDeptHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); if($companyDepartments == null) $data['tblCompanyDept'] = '

No departments found.

'; @@ -77,7 +82,7 @@ class HRController extends BaseController $companyBranches = (new CompanyBranchModel())->findAll(); $companyBranchHTMLTable = new \CodeIgniter\View\Table(); - $companyBranchHTMLTable->setTemplate($this->adminLTETableTemplate()); + $companyBranchHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); if($companyBranches == null) $data['tblCompanyBranch'] = '

No branches found.

'; @@ -119,7 +124,7 @@ class HRController extends BaseController $jobTitles = (new JobTitleModel())->findAll(); $jobTitleHTMLTable = new \CodeIgniter\View\Table(); - $jobTitleHTMLTable->setTemplate($this->adminLTETableTemplate()); + $jobTitleHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); if($jobTitles == null) $data['tblJobTitle'] = '

No job titles found.

'; @@ -161,7 +166,7 @@ class HRController extends BaseController $employmentStatus = (new EmploymentStatusModel())->findAll(); $empStatusHTMLTable = new \CodeIgniter\View\Table(); - $empStatusHTMLTable->setTemplate($this->adminLTETableTemplate()); + $empStatusHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); if($employmentStatus == null) $data['tblEmploymentStatus'] = '

No employment status found.

'; @@ -205,9 +210,10 @@ class HRController extends BaseController $data['departments'] = (new CompanyDepartmentModel())->findAll(); $data['jobTitles'] = (new JobTitleModel())->findAll(); $data['employmentStatus'] = (new EmploymentStatusModel())->findAll(); + $data['payGroups'] = (new PayrollGroupModel())->findAll(); $employeeHTMLTable = new \CodeIgniter\View\Table(); - $employeeHTMLTable->setTemplate($this->adminLTETableTemplate()); + $employeeHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); if($employees == null) $data['tblEmployee'] = '

No employees found.

'; @@ -245,15 +251,4 @@ class HRController extends BaseController else return redirect()->to('/hr/emp')->with('message', 'Employee Added'); } - - - // Class specific methods - private function adminLTETableTemplate() - { - $template = [ - 'table_open' => '
' - ]; - - return $template; - } } \ No newline at end of file diff --git a/app/Controllers/PayrollController.php b/app/Controllers/PayrollController.php index bb5e72d..b343ae0 100644 --- a/app/Controllers/PayrollController.php +++ b/app/Controllers/PayrollController.php @@ -12,6 +12,9 @@ use App\Models\PayrollGroupModel; // Entities use App\Entities\PayrollGroup; +// Class Library +use App\ClassLib\MiscLib; + class PayrollController extends BaseController { public function index() @@ -22,6 +25,54 @@ class PayrollController extends BaseController public function payrollGroup() { - + $payGroups = (new PayrollGroupModel())->findAll(); + + $payGroupHTMLTable = new \CodeIgniter\View\Table(); + $payGroupHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); + + if($payGroups == null) + $data['tblPayGroup'] = '

No groups found.

'; + else + { + foreach($payGroups as $group) + { + $payGroupHTMLTable->setHeading('Group ID', 'Group Name', 'Action'); + + $iconView = ''; + + $payGroupHTMLTable->addRow($group->pay_group_id, $group->pay_group_code, $group->pay_group_name, "$iconView"); + } + + $data['tblPayGroup'] = $payGroupHTMLTable->generate(); + } + + return view('payroll/paygroupview', $data); + } + + public function addPayrollGroup() + { + $payrollGroup = new PayrollGroup(); + $payrollGroupModel = new PayrollGroupModel(); + + $rawData = $this->request->getPost(); + + $payrollGroup->fill($rawData); + $payrollGroupModel->save($payrollGroup); + + if($payrollGroupModel->getInsertID() == 0) + return redirect()->back()->withInput()->with('error', 'Failed to add payroll group'); + else + return redirect()->to('/payroll/paygroup')->with('message', 'Payroll Group Added'); + } + + public function employeePayrollGroupAssignment() + { + + return view('payroll/empaygrpview'); + } + + public function addEmployeePayrollGroupAssignment() + { + } } diff --git a/app/Database/Migrations/2024-09-11-081707_AddPayGrpOnEmployee.php b/app/Database/Migrations/2024-09-11-081707_AddPayGrpOnEmployee.php new file mode 100644 index 0000000..e9323fe --- /dev/null +++ b/app/Database/Migrations/2024-09-11-081707_AddPayGrpOnEmployee.php @@ -0,0 +1,34 @@ + [ + 'type' => 'INT', + 'constraint' => 11, + 'unsigned' => true, + 'null' => false, + 'default' => 0, // Remove this if you want to recreate Employee migration + 'after' => 'emp_status_id', + ], + ]; + + $this->forge->addColumn('employee', $fields); + + $this->forge->addForeignKey('pay_group_id', 'pay_group', 'pay_group_id', 'CASCADE', 'RESTRICT'); + $this->forge->processIndexes('employee'); + } + + public function down() + { + $this->forge->dropForeignKey('employee', 'employee_pay_group_id_foreign'); + $this->forge->processIndexes('employee'); + $this->forge->dropColumn('employee', 'pay_group_id'); + } +} diff --git a/app/Views/hr/employeeview.php b/app/Views/hr/employeeview.php index 106411e..8c96fcc 100644 --- a/app/Views/hr/employeeview.php +++ b/app/Views/hr/employeeview.php @@ -114,6 +114,22 @@ +
+ +
+ + +
+
diff --git a/app/Views/payroll/paygroupview.php b/app/Views/payroll/paygroupview.php new file mode 100644 index 0000000..867f097 --- /dev/null +++ b/app/Views/payroll/paygroupview.php @@ -0,0 +1,105 @@ + +extend('templates/adminlte/generalcontent') ?> + + + +section('title') ?>Payroll GroupendSection() ?> + + + +section('css') ?> +endSection() ?> + + + +section('bodyclass') ?>sidebar-miniendSection() ?> + + + +section('containertitle') ?>Payroll GroupendSection() ?> + + + +section('activebreadcrumb') ?>Payroll GroupendSection() ?> + + + +section('main') ?> + + + + + +
+
+
+
+

List of Payroll Groups

+
+
+
+ +
+
+ +
+
+
+ +endSection() ?> + + + + +section('js') ?> + + + +endSection() ?> + + \ No newline at end of file diff --git a/app/Views/templates/adminlte/generalcontent.php b/app/Views/templates/adminlte/generalcontent.php index 9521d40..94beda1 100644 --- a/app/Views/templates/adminlte/generalcontent.php +++ b/app/Views/templates/adminlte/generalcontent.php @@ -202,11 +202,10 @@ user()->inGroup('admin', 'superadmin', 'payroll')): ?> @@ -214,7 +213,8 @@

- Gallery + EmpPay Assignment + 2

diff --git a/writable/debugbar/debugbar_1725718854.644607.json b/writable/debugbar/debugbar_1725718854.644607.json deleted file mode 100644 index 2c5ef56..0000000 --- a/writable/debugbar/debugbar_1725718854.644607.json +++ /dev/null @@ -1 +0,0 @@ -{"url":"http:\/\/localhost:8080\/login","method":"GET","isAJAX":false,"startTime":1725718854.56258,"totalTime":75.39999999999999,"totalMemory":"6.108","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718854.570316,"duration":0.014890909194946289},{"name":"Routing","component":"Timer","start":1725718854.585208,"duration":0.0001671314239501953},{"name":"Before Filters","component":"Timer","start":1725718854.586487,"duration":2.002716064453125e-5},{"name":"Controller","component":"Timer","start":1725718854.586509,"duration":0.051464080810546875},{"name":"Controller Constructor","component":"Timer","start":1725718854.58651,"duration":0.001486063003540039},{"name":"After Filters","component":"Timer","start":1725718854.637991,"duration":0.00028014183044433594}]},{"title":"Database","titleSafe":"database","titleDetails":"(1 total Query, 1 unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.59 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php:191","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:36","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Auth->__call()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginView()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a016\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"57db4f8d2f4a1d344c5faa0598ea46b3"}]},"badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718854.603432,"duration":"0.025694"},{"name":"Query","component":"Database","start":1725718854.629806,"duration":"0.000591","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/nomenu.php","component":"Views","start":1725718854.637539,"duration":0.0003039836883544922},{"name":"View: \\App\\Views\\login.php","component":"Views","start":1725718854.634858,"duration":0.0030670166015625}]},{"title":"Files","titleSafe":"files","titleDetails":"( 184 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Language\\Language.php","name":"Language.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Security\\Security.php","name":"Security.php"},{"path":"SYSTEMPATH\\Security\\SecurityInterface.php","name":"SecurityInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\DocTypes.php","name":"DocTypes.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php","name":"LoginController.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Language\\en\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Viewable.php","name":"Viewable.php"},{"path":"APPPATH\\Views\\login.php","name":"login.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\nomenu.php","name":"nomenu.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":184,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\CodeIgniter\\Shield\\Controllers\\LoginController","method":"loginView","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"6.02","count":1},"dbquery":{"event":"dbquery","duration":"0.03","count":1}}},"badgeValue":2,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718854.577456,"duration":0.006021022796630859},{"name":"Event: dbquery","component":"Events","start":1725718854.630402,"duration":2.9802322387695312e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Not logged in.<\/p>","badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"

1725718852<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/","csrf_test_name":"31bb27a9e1ea0f86ebc2ab5c0ea6b6ed"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/","Cookie":"debug-bar-state=open; ci_session=i59gkevr6r9k899deisagtmc0skrndpk","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"i59gkevr6r9k899deisagtmc0skrndpk"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718871.657285.json b/writable/debugbar/debugbar_1725718871.657285.json
deleted file mode 100644
index fe80fcf..0000000
--- a/writable/debugbar/debugbar_1725718871.657285.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/login","method":"POST","isAJAX":false,"startTime":1725718871.364551,"totalTime":278.3,"totalMemory":"6.888","segmentDuration":40,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718871.372243,"duration":0.015017986297607422},{"name":"Routing","component":"Timer","start":1725718871.387262,"duration":0.0001049041748046875},{"name":"Before Filters","component":"Timer","start":1725718871.388465,"duration":2.4080276489257812e-5},{"name":"Controller","component":"Timer","start":1725718871.388491,"duration":0.25434017181396484},{"name":"Controller Constructor","component":"Timer","start":1725718871.388491,"duration":0.001577138900756836},{"name":"After Filters","component":"Timer","start":1725718871.642847,"duration":0.0003478527069091797}]},{"title":"Database","titleSafe":"database","titleDetails":"(7 total Queries, 7 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.57 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Validation\\ValidationRules.php:76","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:100","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Validation\\ValidationRules->getLoginRules()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:58","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->getValidationRules()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"4662501229fd18b52089b94ba8a54b64"},{"hover":"","class":"","duration":"1.15 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> LOWER(`users`.`username`) = 'admin'\nAND<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\n LIMIT<\/strong> 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:271","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:679","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFirst()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:240","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->first()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:334","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findByCredentials()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:137","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->check()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:240","qid":"55b88f9d9efd8d18c02581e7008bc979"},{"hover":"","class":"","duration":"1.3 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `auth_identities`\nWHERE<\/strong> `user_id` = 1\nORDER<\/strong> BY<\/strong> `id`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:393","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:98","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->getIdentities()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:112","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateIdentities()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:83","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getIdentities()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:156","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getIdentity()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:274","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getEmailIdentity()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Entity\\Entity.php:526","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getPasswordHash()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:347","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Entity\\Entity->__get()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:137","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->check()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a016\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a017\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a018\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:393","qid":"c874188439ac203e5569cf89c0c6261b"},{"hover":"","class":"","duration":"2.84 ms","sql":"UPDATE<\/strong> `auth_identities` SET `last_used_at` = '2024-09-07 14:21:11', `updated_at` = '2024-09-07 14:21:11'\nWHERE<\/strong> `auth_identities`.`id` IN<\/strong> ('1')","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:990","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doUpdate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:812","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->update()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:553","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->update()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:714","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->update()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:447","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->save()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:225","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->touchIdentity()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:169","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->touchIdentity()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:553","qid":"d596c346ab6ae2d6d90a164641171c71"},{"hover":"","class":"","duration":"3.34 ms","sql":"INSERT<\/strong> INTO<\/strong> `auth_logins` (`ip_address`, `user_agent`, `id_type`, `identifier`, `user_id`, `date`, `success`) VALUES<\/strong> ('::1', 'Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0', 'username', 'admin', 1, '2024-09-07 14:21:11', 1)","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2307","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:327","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->insert()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:805","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doInsert()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:749","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->insert()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php:77","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->insert()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:302","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\LoginModel->recordLoginAttempt()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:179","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordLoginAttempt()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php:77","qid":"9d6eb448e556b7eec09e723497d02be4"},{"hover":"","class":"","duration":"1.04 ms","sql":"DELETE FROM<\/strong> `auth_remember_tokens`\nWHERE<\/strong> `expires` <= '2024-09-07 14:21:11'","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2787","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:454","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->delete()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:1120","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doDelete()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php:104","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->delete()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:780","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\RememberModel->purgeOldRememberTokens()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:181","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->issueRememberMeToken()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php:104","qid":"303716478281e2fecfb7830210d7815a"},{"hover":"","class":"","duration":"1.01 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_info`\nWHERE<\/strong> `company_info`.`company_id` = '1'","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:86","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:86","qid":"058f956fb94fefdd88083c9e1539e038"}]},"badgeValue":7,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718871.396457,"duration":"0.022368"},{"name":"Query","component":"Database","start":1725718871.419527,"duration":"0.000570","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718871.43354,"duration":"0.001149","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> LOWER(`users`.`username`) = 'admin'\nAND<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\n LIMIT<\/strong> 1"},{"name":"Query","component":"Database","start":1725718871.438434,"duration":"0.001295","query":"SELECT<\/strong> *\nFROM<\/strong> `auth_identities`\nWHERE<\/strong> `user_id` = 1\nORDER<\/strong> BY<\/strong> `id`"},{"name":"Query","component":"Database","start":1725718871.626463,"duration":"0.002840","query":"UPDATE<\/strong> `auth_identities` SET `last_used_at` = '2024-09-07 14:21:11', `updated_at` = '2024-09-07 14:21:11'\nWHERE<\/strong> `auth_identities`.`id` IN<\/strong> ('1')"},{"name":"Query","component":"Database","start":1725718871.635814,"duration":"0.003341","query":"INSERT<\/strong> INTO<\/strong> `auth_logins` (`ip_address`, `user_agent`, `id_type`, `identifier`, `user_id`, `date`, `success`) VALUES<\/strong> ('::1', 'Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0', 'username', 'admin', 1, '2024-09-07 14:21:11', 1)"},{"name":"Query","component":"Database","start":1725718871.639385,"duration":"0.001042","query":"DELETE FROM<\/strong> `auth_remember_tokens`\nWHERE<\/strong> `expires` <= '2024-09-07 14:21:11'"},{"name":"Query","component":"Database","start":1725718871.641067,"duration":"0.001009","query":"SELECT<\/strong> *\nFROM<\/strong> `company_info`\nWHERE<\/strong> `company_info`.`company_id` = '1'"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":0,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Files","titleSafe":"files","titleDetails":"( 199 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RedirectResponse.php","name":"RedirectResponse.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Security\\Security.php","name":"Security.php"},{"path":"SYSTEMPATH\\Security\\SecurityInterface.php","name":"SecurityInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\DotArrayFilter.php","name":"DotArrayFilter.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyInfoModel.php","name":"CompanyInfoModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords.php","name":"Passwords.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php","name":"LoginController.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\UserIdentity.php","name":"UserIdentity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Result.php","name":"Result.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Viewable.php","name":"Viewable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Validation\\ValidationRules.php","name":"ValidationRules.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":199,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\CodeIgniter\\Shield\\Controllers\\LoginController","method":"loginAction","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":15,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"5.98","count":1},"dbquery":{"event":"dbquery","duration":"0.16","count":7}}},"badgeValue":8,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718871.379521,"duration":0.005978107452392578},{"name":"Event: dbquery","component":"Events","start":1725718871.420103,"duration":2.7894973754882812e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.434694,"duration":2.193450927734375e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.439733,"duration":2.193450927734375e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.629307,"duration":2.5033950805664062e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.639159,"duration":2.193450927734375e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.640433,"duration":2.6941299438476562e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.64208,"duration":1.7881393432617188e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>

User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/login","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"post":{"csrf_test_name":"31bb27a9e1ea0f86ebc2ab5c0ea6b6ed","username":"admin","password":"password0000"},"headers":{"Content-Type":"application\/x-www-form-urlencoded","Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Content-Length":"84","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/login","Cookie":"debug-bar-state=open; ci_session=i59gkevr6r9k899deisagtmc0skrndpk","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"i59gkevr6r9k899deisagtmc0skrndpk"},"request":"HTTP\/1.1","response":{"statusCode":303,"reason":"See Other","contentType":"text\/html; charset=UTF-8","headers":{"Cache-Control":"no-store, max-age=0, no-cache","Content-Type":"text\/html; charset=UTF-8","Location":"http:\/\/localhost:8080\/hi"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718871.763352.json b/writable/debugbar/debugbar_1725718871.763352.json
deleted file mode 100644
index 2a9e0df..0000000
--- a/writable/debugbar/debugbar_1725718871.763352.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hi","method":"GET","isAJAX":false,"startTime":1725718871.6791,"totalTime":75.30000000000001,"totalMemory":"6.211","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718871.686454,"duration":0.014499902725219727},{"name":"Routing","component":"Timer","start":1725718871.700955,"duration":2.5033950805664062e-5},{"name":"Before Filters","component":"Timer","start":1725718871.701936,"duration":0.04974794387817383},{"name":"Controller","component":"Timer","start":1725718871.751687,"duration":0.0026710033416748047},{"name":"Controller Constructor","component":"Timer","start":1725718871.751689,"duration":0.0006029605865478516},{"name":"After Filters","component":"Timer","start":1725718871.754376,"duration":0.00017213821411132812}]},{"title":"Database","titleSafe":"database","titleDetails":"(4 total Queries, 4 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.62 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"a48b22797cb3a92cb7676678863003a8"},{"hover":"","class":"","duration":"1.09 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"aad7d6d99103827271250a1a91766f06"},{"hover":"","class":"","duration":"1.89 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:21:11'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"10cd0114e1c044840ae43e780fe87efc"},{"hover":"","class":"","duration":"0.68 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\DashboardController.php:15","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\DashboardController->index()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"84289cf3e0bb728b59b7a8179bad8a10"}]},"badgeValue":4,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718871.718765,"duration":"0.018525"},{"name":"Query","component":"Database","start":1725718871.737926,"duration":"0.000624","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718871.744672,"duration":"0.001089","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725718871.74973,"duration":"0.001886","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:21:11'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725718871.753146,"duration":"0.000676","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725718871.752513,"duration":0.001728057861328125},{"name":"View: dashboard.php","component":"Views","start":1725718871.752314,"duration":0.0019979476928710938}]},{"title":"Files","titleSafe":"files","titleDetails":"( 194 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\DashboardController.php","name":"DashboardController.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\dashboard.php","name":"dashboard.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":194,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\DashboardController","method":"index","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"5.62","count":1},"dbquery":{"event":"dbquery","duration":"0.10","count":4}}},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718871.693646,"duration":0.005619049072265625},{"name":"Event: dbquery","component":"Events","start":1725718871.738557,"duration":3.695487976074219e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.745766,"duration":2.5033950805664062e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.751621,"duration":2.5033950805664062e-5},{"name":"Event: dbquery","component":"Events","start":1725718871.753824,"duration":1.5020370483398438e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/login","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/login","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718878.264438.json b/writable/debugbar/debugbar_1725718878.264438.json
deleted file mode 100644
index 11de2cd..0000000
--- a/writable/debugbar/debugbar_1725718878.264438.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/dept","method":"GET","isAJAX":false,"startTime":1725718878.178944,"totalTime":76.1,"totalMemory":"6.903","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718878.186315,"duration":0.014050960540771484},{"name":"Routing","component":"Timer","start":1725718878.200367,"duration":2.5033950805664062e-5},{"name":"Before Filters","component":"Timer","start":1725718878.201375,"duration":0.04894590377807617},{"name":"Controller","component":"Timer","start":1725718878.250324,"duration":0.004744052886962891},{"name":"Controller Constructor","component":"Timer","start":1725718878.250325,"duration":0.0008461475372314453},{"name":"After Filters","component":"Timer","start":1725718878.255087,"duration":0.0001881122589111328}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.57 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"6d7fc696b58c8307d2876597272366be"},{"hover":"","class":"","duration":"0.98 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"e404d01ddb8bb3f99088ab16c6dc2745"},{"hover":"","class":"","duration":"1.9 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:21:18'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"ad693df02ade6ec6ce52b896bdee94ed"},{"hover":"","class":"","duration":"0.69 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:32","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:32","qid":"5f70816a1e62fbd82e98e6ad8122297d"},{"hover":"","class":"","duration":"0.58 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"e87ec389b69fe040c96526d87fa7d5be"}]},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718878.216962,"duration":"0.020788"},{"name":"Query","component":"Database","start":1725718878.238473,"duration":"0.000565","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718878.244572,"duration":"0.000981","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725718878.248352,"duration":"0.001902","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:21:18'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725718878.251433,"duration":"0.000686","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725718878.253907,"duration":"0.000576","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725718878.253279,"duration":0.001631021499633789},{"name":"View: hr\/departmentview.php","component":"Views","start":1725718878.252934,"duration":0.002048015594482422}]},{"title":"Files","titleSafe":"files","titleDetails":"( 197 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\departmentview.php","name":"departmentview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":197,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"companyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"5.75","count":1},"dbquery":{"event":"dbquery","duration":"0.11","count":5}}},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718878.192908,"duration":0.005751848220825195},{"name":"Event: dbquery","component":"Events","start":1725718878.239044,"duration":2.8133392333984375e-5},{"name":"Event: dbquery","component":"Events","start":1725718878.245556,"duration":1.9788742065429688e-5},{"name":"Event: dbquery","component":"Events","start":1725718878.250258,"duration":2.9087066650390625e-5},{"name":"Event: dbquery","component":"Events","start":1725718878.252122,"duration":1.5974044799804688e-5},{"name":"Event: dbquery","component":"Events","start":1725718878.254486,"duration":2.09808349609375e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"tblCompanyDept":"<table class="table table-head-fixed table-hover text-nowrap">\n<thead>\n<tr>\n<th>Department ID<\/th><th>Department Code<\/th><th>Department Name<\/th><th>Action<\/th><\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td><td>HR<\/td><td>Human Resources<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<tr>\n<td>2<\/td><td>IT<\/td><td>IT<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<\/tbody>\n<\/table>"}},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hi","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/hi","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718931.648287.json b/writable/debugbar/debugbar_1725718931.648287.json
deleted file mode 100644
index fe63c95..0000000
--- a/writable/debugbar/debugbar_1725718931.648287.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/dept","method":"GET","isAJAX":false,"startTime":1725718931.557771,"totalTime":78.7,"totalMemory":"6.903","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718931.565636,"duration":0.01515817642211914},{"name":"Routing","component":"Timer","start":1725718931.580795,"duration":3.504753112792969e-5},{"name":"Before Filters","component":"Timer","start":1725718931.581982,"duration":0.047683000564575195},{"name":"Controller","component":"Timer","start":1725718931.62967,"duration":0.006740093231201172},{"name":"Controller Constructor","component":"Timer","start":1725718931.629673,"duration":0.0011589527130126953},{"name":"After Filters","component":"Timer","start":1725718931.63643,"duration":0.000186920166015625}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"1.09 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"258982f2f89862cc75a6ca9b628e7f61"},{"hover":"","class":"","duration":"1.69 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"5a1577d3da700af76860fe513d20cb1d"},{"hover":"","class":"","duration":"2.05 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:22:11'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"7fecec87cb2d0b90b9a44aff9f74e632"},{"hover":"","class":"","duration":"1.54 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:32","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:32","qid":"915282bcc769a11bdb1e1614c9b106d1"},{"hover":"","class":"","duration":"1.1 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"9a43d16602ec701d520b582c5c2477ad"}]},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718931.598121,"duration":"0.016539"},{"name":"Query","component":"Database","start":1725718931.615405,"duration":"0.001091","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718931.621338,"duration":"0.001693","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725718931.627494,"duration":"0.002055","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:22:11'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725718931.631231,"duration":"0.001544","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725718931.634672,"duration":"0.001096","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725718931.634039,"duration":0.0022110939025878906},{"name":"View: hr\/departmentview.php","component":"Views","start":1725718931.633665,"duration":0.002665996551513672}]},{"title":"Files","titleSafe":"files","titleDetails":"( 197 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\departmentview.php","name":"departmentview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":197,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"companyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"6.64","count":1},"dbquery":{"event":"dbquery","duration":"0.18","count":5}}},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718931.572458,"duration":0.006641864776611328},{"name":"Event: dbquery","component":"Events","start":1725718931.616501,"duration":3.600120544433594e-5},{"name":"Event: dbquery","component":"Events","start":1725718931.623047,"duration":5.2928924560546875e-5},{"name":"Event: dbquery","component":"Events","start":1725718931.629557,"duration":4.410743713378906e-5},{"name":"Event: dbquery","component":"Events","start":1725718931.632781,"duration":2.9087066650390625e-5},{"name":"Event: dbquery","component":"Events","start":1725718931.635772,"duration":2.193450927734375e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"tblCompanyDept":"<table class="table table-head-fixed table-hover text-nowrap">\n<thead>\n<tr>\n<th>Department ID<\/th><th>Department Code<\/th><th>Department Name<\/th><th>Action<\/th><\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td><td>HR<\/td><td>Human Resources<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<tr>\n<td>2<\/td><td>IT<\/td><td>IT<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<\/tbody>\n<\/table>"}},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/hi","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718995.207754.json b/writable/debugbar/debugbar_1725718995.207754.json
deleted file mode 100644
index 50a1d52..0000000
--- a/writable/debugbar/debugbar_1725718995.207754.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/adddept","method":"POST","isAJAX":false,"startTime":1725718995.131013,"totalTime":65.5,"totalMemory":"6.220","segmentDuration":10,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718995.139554,"duration":0.017824888229370117},{"name":"Routing","component":"Timer","start":1725718995.157383,"duration":0.0014660358428955078},{"name":"Before Filters","component":"Timer","start":1725718995.160426,"duration":0.03463602066040039},{"name":"Controller","component":"Timer","start":1725718995.195065,"duration":0.0014328956604003906},{"name":"Controller Constructor","component":"Timer","start":1725718995.195073,"duration":0.0007891654968261719},{"name":"After Filters","component":"Timer","start":1725718995.196514,"duration":0.00018310546875}]},{"title":"Database","titleSafe":"database","titleDetails":"(3 total Queries, 3 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.65 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"b856cd40a6b00e94adf2acdbb04f905a"},{"hover":"","class":"","duration":"1.58 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"0082a45614ac9fad589312b5e8469075"},{"hover":"","class":"","duration":"1.65 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:15'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"52103fc2786d05a60850446036add7b8"}]},"badgeValue":3,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718995.17811,"duration":"0.003623"},{"name":"Query","component":"Database","start":1725718995.182309,"duration":"0.000651","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718995.188007,"duration":"0.001585","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725718995.193346,"duration":"0.001650","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:15'\nWHERE<\/strong> `id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":0,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Files","titleSafe":"files","titleDetails":"( 193 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RedirectResponse.php","name":"RedirectResponse.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":193,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"addCompanyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":15,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"6.13","count":1},"dbquery":{"event":"dbquery","duration":"0.09","count":3}}},"badgeValue":4,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718995.148177,"duration":0.006133079528808594},{"name":"Event: dbquery","component":"Events","start":1725718995.182965,"duration":2.6941299438476562e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.1896,"duration":3.695487976074219e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.194999,"duration":2.4080276489257812e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","error":"Failed to add Department","__ci_vars":"
Array\n(\n    [error] => new\n)\n<\/pre>"},"post":{"company_id":"1","department_code":"ACCTG","department_name":"Accounting Department"},"headers":{"Content-Type":"application\/x-www-form-urlencoded","Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Content-Length":"72","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/hr\/dept","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":303,"reason":"See Other","contentType":"text\/html; charset=UTF-8","headers":{"Cache-Control":"no-store, max-age=0, no-cache","Content-Type":"text\/html; charset=UTF-8","Location":"http:\/\/localhost:8080\/hr\/dept"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725718995.321507.json b/writable/debugbar/debugbar_1725718995.321507.json
deleted file mode 100644
index 830f29e..0000000
--- a/writable/debugbar/debugbar_1725718995.321507.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/dept","method":"GET","isAJAX":false,"startTime":1725718995.230331,"totalTime":81.60000000000001,"totalMemory":"6.904","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725718995.24005,"duration":0.015796899795532227},{"name":"Routing","component":"Timer","start":1725718995.255851,"duration":4.792213439941406e-5},{"name":"Before Filters","component":"Timer","start":1725718995.257355,"duration":0.04841804504394531},{"name":"Controller","component":"Timer","start":1725718995.305778,"duration":0.006139039993286133},{"name":"Controller Constructor","component":"Timer","start":1725718995.305781,"duration":0.0013852119445800781},{"name":"After Filters","component":"Timer","start":1725718995.311935,"duration":0.00017714500427246094}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.57 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"efa47e3d1e5d9a864fce597d4f8b3d1b"},{"hover":"","class":"","duration":"0.82 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"e93d640069a1650482dfb55e2d38538f"},{"hover":"","class":"","duration":"1.12 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:15'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"86ad1da2e0327adeea3a4f3fb515495a"},{"hover":"","class":"","duration":"1.13 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:32","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:32","qid":"267d55145595c4a79f44bbf5378714c6"},{"hover":"","class":"","duration":"0.69 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"5d7a9e75b1159da5b996bd63c359a63f"}]},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725718995.27439,"duration":"0.020291"},{"name":"Query","component":"Database","start":1725718995.295317,"duration":"0.000572","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725718995.30123,"duration":"0.000819","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725718995.304548,"duration":"0.001119","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:15'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725718995.307561,"duration":"0.001128","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725718995.310646,"duration":"0.000687","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725718995.310009,"duration":0.0017609596252441406},{"name":"View: hr\/departmentview.php","component":"Views","start":1725718995.309641,"duration":0.002201080322265625}]},{"title":"Files","titleSafe":"files","titleDetails":"( 197 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\departmentview.php","name":"departmentview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":197,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"companyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"6.17","count":1},"dbquery":{"event":"dbquery","duration":"0.13","count":5}}},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725718995.247545,"duration":0.006167888641357422},{"name":"Event: dbquery","component":"Events","start":1725718995.295894,"duration":3.314018249511719e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.302052,"duration":1.6927719116210938e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.305675,"duration":3.600120544433594e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.308693,"duration":2.7179718017578125e-5},{"name":"Event: dbquery","component":"Events","start":1725718995.311336,"duration":1.6927719116210938e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"tblCompanyDept":"<table class="table table-head-fixed table-hover text-nowrap">\n<thead>\n<tr>\n<th>Department ID<\/th><th>Department Code<\/th><th>Department Name<\/th><th>Action<\/th><\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td><td>HR<\/td><td>Human Resources<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<tr>\n<td>2<\/td><td>IT<\/td><td>IT<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<\/tbody>\n<\/table>"}},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","error":"Failed to add Department","__ci_vars":"
Array\n(\n    [error] => old\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/hr\/dept","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725719016.630092.json b/writable/debugbar/debugbar_1725719016.630092.json
deleted file mode 100644
index 43f48e3..0000000
--- a/writable/debugbar/debugbar_1725719016.630092.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/adddept","method":"POST","isAJAX":false,"startTime":1725719016.539601,"totalTime":80,"totalMemory":"6.220","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725719016.548692,"duration":0.016896963119506836},{"name":"Routing","component":"Timer","start":1725719016.565591,"duration":2.7894973754882812e-5},{"name":"Before Filters","component":"Timer","start":1725719016.566661,"duration":0.05151700973510742},{"name":"Controller","component":"Timer","start":1725719016.618181,"duration":0.0014400482177734375},{"name":"Controller Constructor","component":"Timer","start":1725719016.618182,"duration":0.0007450580596923828},{"name":"After Filters","component":"Timer","start":1725719016.619644,"duration":0.00028204917907714844}]},{"title":"Database","titleSafe":"database","titleDetails":"(3 total Queries, 3 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.74 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"4193845dfa26b7a8dfa92d84eb0b9766"},{"hover":"","class":"","duration":"0.71 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"c8f77a7777cc0b59c055330dbacab510"},{"hover":"","class":"","duration":"1.43 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:36'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"7058270ad26df75b71308a219e488750"}]},"badgeValue":3,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725719016.584639,"duration":"0.022235"},{"name":"Query","component":"Database","start":1725719016.607672,"duration":"0.000738","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725719016.613395,"duration":"0.000714","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725719016.616683,"duration":"0.001434","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:36'\nWHERE<\/strong> `id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":0,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Files","titleSafe":"files","titleDetails":"( 193 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RedirectResponse.php","name":"RedirectResponse.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":193,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"addCompanyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":15,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"7.68","count":1},"dbquery":{"event":"dbquery","duration":"0.07","count":3}}},"badgeValue":4,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725719016.55606,"duration":0.007678031921386719},{"name":"Event: dbquery","component":"Events","start":1725719016.608416,"duration":2.6941299438476562e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.614112,"duration":1.71661376953125e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.61812,"duration":2.5987625122070312e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","error":"Failed to add Department","__ci_vars":"
Array\n(\n    [error] => new\n)\n<\/pre>"},"post":{"company_id":"1","department_code":"ACCTG","department_name":"Accounting Department"},"headers":{"Content-Type":"application\/x-www-form-urlencoded","Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Content-Length":"72","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/hr\/dept","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":303,"reason":"See Other","contentType":"text\/html; charset=UTF-8","headers":{"Cache-Control":"no-store, max-age=0, no-cache","Content-Type":"text\/html; charset=UTF-8","Location":"http:\/\/localhost:8080\/hr\/dept"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725719016.729479.json b/writable/debugbar/debugbar_1725719016.729479.json
deleted file mode 100644
index 0a4a2d2..0000000
--- a/writable/debugbar/debugbar_1725719016.729479.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/dept","method":"GET","isAJAX":false,"startTime":1725719016.652402,"totalTime":65.4,"totalMemory":"6.904","segmentDuration":10,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725719016.660687,"duration":0.01530003547668457},{"name":"Routing","component":"Timer","start":1725719016.675988,"duration":2.9087066650390625e-5},{"name":"Before Filters","component":"Timer","start":1725719016.677014,"duration":0.03442192077636719},{"name":"Controller","component":"Timer","start":1725719016.71144,"duration":0.006315946578979492},{"name":"Controller Constructor","component":"Timer","start":1725719016.711442,"duration":0.001180887222290039},{"name":"After Filters","component":"Timer","start":1725719016.71778,"duration":0.00023794174194335938}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.59 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"8283687acd9b76619f92d9c64a314219"},{"hover":"","class":"","duration":"1.12 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"f735815a07b068a4c868d6166fdaaa82"},{"hover":"","class":"","duration":"0.91 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:36'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"8afb2c330748aeb2533206cdc0d4f7f8"},{"hover":"","class":"","duration":"0.76 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:32","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:32","qid":"40b5b6cc2b688f36954c3e64744ff7d8"},{"hover":"","class":"","duration":"0.77 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"9ab9e85d55a0cf751db5538469e4acf1"}]},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725719016.695148,"duration":"0.003558"},{"name":"Query","component":"Database","start":1725719016.699245,"duration":"0.000585","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725719016.706183,"duration":"0.001117","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725719016.710447,"duration":"0.000907","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:23:36'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725719016.713026,"duration":"0.000757","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725719016.716257,"duration":"0.000775","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725719016.715355,"duration":0.0021991729736328125},{"name":"View: hr\/departmentview.php","component":"Views","start":1725719016.714847,"duration":0.0028028488159179688}]},{"title":"Files","titleSafe":"files","titleDetails":"( 197 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\departmentview.php","name":"departmentview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":197,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"companyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"6.64","count":1},"dbquery":{"event":"dbquery","duration":"0.13","count":5}}},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725719016.667563,"duration":0.006636142730712891},{"name":"Event: dbquery","component":"Events","start":1725719016.699835,"duration":2.193450927734375e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.707305,"duration":3.0040740966796875e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.711359,"duration":3.0994415283203125e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.713786,"duration":2.1219253540039062e-5},{"name":"Event: dbquery","component":"Events","start":1725719016.717037,"duration":2.193450927734375e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"tblCompanyDept":"<table class="table table-head-fixed table-hover text-nowrap">\n<thead>\n<tr>\n<th>Department ID<\/th><th>Department Code<\/th><th>Department Name<\/th><th>Action<\/th><\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td><td>HR<\/td><td>Human Resources<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<tr>\n<td>2<\/td><td>IT<\/td><td>IT<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<\/tbody>\n<\/table>"}},"session":{"__ci_last_regenerate":"
1725718871<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","error":"Failed to add Department","__ci_vars":"
Array\n(\n    [error] => old\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/hr\/dept","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725719453.657276.json b/writable/debugbar/debugbar_1725719453.657276.json
deleted file mode 100644
index 5c11e07..0000000
--- a/writable/debugbar/debugbar_1725719453.657276.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/adddept","method":"POST","isAJAX":false,"startTime":1725719453.577393,"totalTime":68.5,"totalMemory":"6.210","segmentDuration":10,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725719453.587021,"duration":0.01807689666748047},{"name":"Routing","component":"Timer","start":1725719453.6051,"duration":4.100799560546875e-5},{"name":"Before Filters","component":"Timer","start":1725719453.606269,"duration":0.03816699981689453},{"name":"Controller","component":"Timer","start":1725719453.644443,"duration":0.0014579296112060547},{"name":"Controller Constructor","component":"Timer","start":1725719453.644444,"duration":0.0008339881896972656},{"name":"After Filters","component":"Timer","start":1725719453.645915,"duration":0.00018095970153808594}]},{"title":"Database","titleSafe":"database","titleDetails":"(3 total Queries, 3 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.79 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"9e9728095d3080cb5e3a835bb5fe416b"},{"hover":"","class":"","duration":"1.33 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"aa31f8016b19d3a80acb21ad8421f8e6"},{"hover":"","class":"","duration":"1.98 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:30:53'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"ec0df34dae58847662da20117ece7e9d"}]},"badgeValue":3,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725719453.62499,"duration":"0.004185"},{"name":"Query","component":"Database","start":1725719453.629909,"duration":"0.000788","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725719453.637877,"duration":"0.001329","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725719453.642389,"duration":"0.001976","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:30:53'\nWHERE<\/strong> `id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":0,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Files","titleSafe":"files","titleDetails":"( 193 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RedirectResponse.php","name":"RedirectResponse.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":193,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"addCompanyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":15,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"8.45","count":1},"dbquery":{"event":"dbquery","duration":"0.10","count":3}}},"badgeValue":4,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725719453.594094,"duration":0.00845193862915039},{"name":"Event: dbquery","component":"Events","start":1725719453.630703,"duration":3.0994415283203125e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.639212,"duration":3.814697265625e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.644369,"duration":2.7179718017578125e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725719453<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","_ci_old_input":"
Array\n(\n    [get] => Array\n        (\n        )\n\n    [post] => Array\n        (\n            [company_id] => 1\n            [department_code] => ACCTG\n            [department_name] => Accounting Department\n        )\n\n)\n<\/pre>","__ci_vars":"
Array\n(\n    [_ci_old_input] => new\n    [error] => new\n)\n<\/pre>","error":"Failed to add Department"},"post":{"company_id":"1","department_code":"ACCTG","department_name":"Accounting Department"},"headers":{"Content-Type":"application\/x-www-form-urlencoded","Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Content-Length":"72","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/hr\/dept","Cookie":"debug-bar-state=open; ci_session=nhukbcb50i2uh5b9ci9f2kjk3oebpopa","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"nhukbcb50i2uh5b9ci9f2kjk3oebpopa"},"request":"HTTP\/1.1","response":{"statusCode":303,"reason":"See Other","contentType":"text\/html; charset=UTF-8","headers":{"Cache-Control":"no-store, max-age=0, no-cache","Content-Type":"text\/html; charset=UTF-8","Location":"http:\/\/localhost:8080\/hr\/dept"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725719453.777071.json b/writable/debugbar/debugbar_1725719453.777071.json
deleted file mode 100644
index b8e4b93..0000000
--- a/writable/debugbar/debugbar_1725719453.777071.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/dept","method":"GET","isAJAX":false,"startTime":1725719453.680075,"totalTime":87.3,"totalMemory":"6.903","segmentDuration":15,"segmentCount":6,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725719453.689882,"duration":0.015882015228271484},{"name":"Routing","component":"Timer","start":1725719453.705766,"duration":3.695487976074219e-5},{"name":"Before Filters","component":"Timer","start":1725719453.70681,"duration":0.05475902557373047},{"name":"Controller","component":"Timer","start":1725719453.761573,"duration":0.0057408809661865234},{"name":"Controller Constructor","component":"Timer","start":1725719453.761574,"duration":0.0008320808410644531},{"name":"After Filters","component":"Timer","start":1725719453.767338,"duration":0.00030493736267089844}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.67 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"58128d316898bc07b00a95cf9e663599"},{"hover":"","class":"","duration":"0.96 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"af066adda40c1a01fa0783efe79a015f"},{"hover":"","class":"","duration":"0.85 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:30:53'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"a0075715005633593e5c5472e6c69a57"},{"hover":"","class":"","duration":"0.93 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:32","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:32","qid":"af82e3525a06c8bd3c6b8fa6ac035be8"},{"hover":"","class":"","duration":"0.9 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->companyDepartment()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"db3deccb7660c9d58e022abf5a3e4886"}]},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725719453.724175,"duration":"0.025673"},{"name":"Query","component":"Database","start":1725719453.750779,"duration":"0.000669","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725719453.756796,"duration":"0.000959","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725719453.76065,"duration":"0.000854","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-07 14:30:53'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725719453.762659,"duration":"0.000928","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725719453.765457,"duration":"0.000899","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725719453.764819,"duration":0.002274036407470703},{"name":"View: hr\/departmentview.php","component":"Views","start":1725719453.764457,"duration":0.0027680397033691406}]},{"title":"Files","titleSafe":"files","titleDetails":"( 197 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\departmentview.php","name":"departmentview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":197,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"companyDepartment","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"7.15","count":1},"dbquery":{"event":"dbquery","duration":"0.13","count":5}}},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725719453.696782,"duration":0.007149934768676758},{"name":"Event: dbquery","component":"Events","start":1725719453.751454,"duration":2.9802322387695312e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.757758,"duration":3.0040740966796875e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.761508,"duration":2.4080276489257812e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.76359,"duration":2.193450927734375e-5},{"name":"Event: dbquery","component":"Events","start":1725719453.766361,"duration":2.5987625122070312e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"tblCompanyDept":"<table class="table table-head-fixed table-hover text-nowrap">\n<thead>\n<tr>\n<th>Department ID<\/th><th>Department Code<\/th><th>Department Name<\/th><th>Action<\/th><\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td><td>HR<\/td><td>Human Resources<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<tr>\n<td>2<\/td><td>IT<\/td><td>IT<\/td><td><a href="#" class="ml-3" data-toggle="tooltip" title="View Department Information"><i class="fas fa-eye "><\/i><\/a><\/td><\/tr>\n<\/tbody>\n<\/table>"}},"session":{"__ci_last_regenerate":"
1725719453<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/hr\/dept","csrf_test_name":"d0eafcbc7845616f705e9277629e6ac2","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>","_ci_old_input":"
Array\n(\n    [get] => Array\n        (\n        )\n\n    [post] => Array\n        (\n            [company_id] => 1\n            [department_code] => ACCTG\n            [department_name] => Accounting Department\n        )\n\n)\n<\/pre>","__ci_vars":"
Array\n(\n    [_ci_old_input] => old\n    [error] => old\n)\n<\/pre>","error":"Failed to add Department"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/hr\/dept","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=olpjtr7njtrm5e53cfr01sqqu7i6tukp","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"olpjtr7njtrm5e53cfr01sqqu7i6tukp"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725757968.406099.json b/writable/debugbar/debugbar_1725757968.406099.json
deleted file mode 100644
index 08f4a46..0000000
--- a/writable/debugbar/debugbar_1725757968.406099.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/","method":"GET","isAJAX":false,"startTime":1725757968.158577,"totalTime":37.400000000000006,"totalMemory":"3.790","segmentDuration":10,"segmentCount":4,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725757968.169357,"duration":0.021775007247924805},{"name":"Routing","component":"Timer","start":1725757968.191134,"duration":3.0040740966796875e-5},{"name":"Before Filters","component":"Timer","start":1725757968.192505,"duration":3.504753112792969e-5},{"name":"Controller","component":"Timer","start":1725757968.192542,"duration":0.0034589767456054688},{"name":"Controller Constructor","component":"Timer","start":1725757968.192542,"duration":0.001355886459350586},{"name":"After Filters","component":"Timer","start":1725757968.196021,"duration":0.0003299713134765625}]},{"title":"Database","titleSafe":"database","titleDetails":"(0 total Query, 0  unique across 0 Connection)","display":{"queries":[]},"badgeValue":0,"isEmpty":true,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[]},"badgeValue":null,"isEmpty":true,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/nomenu.php","component":"Views","start":1725757968.195394,"duration":0.0003829002380371094},{"name":"View: home.php","component":"Views","start":1725757968.195219,"duration":0.0007200241088867188}]},{"title":"Files","titleSafe":"files","titleDetails":"( 125 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\Home.php","name":"Home.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\Views\\home.php","name":"home.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\nomenu.php","name":"nomenu.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":125,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\Home","method":"index","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"10.37","count":1}}},"badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725757968.178365,"duration":0.010373115539550781}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Not logged in.<\/p>","badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"

1725757968<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Connection":"keep-alive","Cookie":"debug-bar-state=open","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"none","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725757987.835410.json b/writable/debugbar/debugbar_1725757987.835410.json
deleted file mode 100644
index 65047d2..0000000
--- a/writable/debugbar/debugbar_1725757987.835410.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/login","method":"POST","isAJAX":false,"startTime":1725757987.072903,"totalTime":688.2,"totalMemory":"6.888","segmentDuration":100,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725757987.083829,"duration":0.01899099349975586},{"name":"Routing","component":"Timer","start":1725757987.102822,"duration":0.0001289844512939453},{"name":"Before Filters","component":"Timer","start":1725757987.104353,"duration":2.193450927734375e-5},{"name":"Controller","component":"Timer","start":1725757987.104377,"duration":0.6567158699035645},{"name":"Controller Constructor","component":"Timer","start":1725757987.104378,"duration":0.0018351078033447266},{"name":"After Filters","component":"Timer","start":1725757987.761124,"duration":0.0006999969482421875}]},{"title":"Database","titleSafe":"database","titleDetails":"(6 total Queries, 6 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.51 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Validation\\ValidationRules.php:76","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:100","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Validation\\ValidationRules->getLoginRules()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:58","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->getValidationRules()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"bb6d4f74cffb0c671efbc03abc01bb1a"},{"hover":"","class":"","duration":"1.79 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> LOWER(`users`.`username`) = 'admin'\nAND<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\n LIMIT<\/strong> 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:271","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:679","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFirst()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:240","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->first()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:334","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findByCredentials()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:137","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->check()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:240","qid":"34a9002c116bb5d0a14461b36b6596cc"},{"hover":"","class":"","duration":"1.74 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `auth_identities`\nWHERE<\/strong> `user_id` = 1\nORDER<\/strong> BY<\/strong> `id`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:393","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:98","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->getIdentities()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:112","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateIdentities()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:83","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getIdentities()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:156","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getIdentity()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:274","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getEmailIdentity()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Entity\\Entity.php:526","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->getPasswordHash()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:347","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Entity\\Entity->__get()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:137","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->check()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a016\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a017\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a018\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:393","qid":"6ea1994fd304b451e2e2974daf636a27"},{"hover":"","class":"","duration":"3.47 ms","sql":"UPDATE<\/strong> `auth_identities` SET `last_used_at` = '2024-09-08 01:13:07', `updated_at` = '2024-09-08 01:13:07'\nWHERE<\/strong> `auth_identities`.`id` IN<\/strong> ('1')","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:990","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doUpdate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:812","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->update()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:553","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->update()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:714","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->update()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:447","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->save()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php:225","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserIdentityModel->touchIdentity()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:169","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->touchIdentity()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php:553","qid":"4d19ddabc1c1f4e2c5499665add9401e"},{"hover":"","class":"","duration":"2.22 ms","sql":"INSERT<\/strong> INTO<\/strong> `auth_logins` (`ip_address`, `user_agent`, `id_type`, `identifier`, `user_id`, `date`, `success`) VALUES<\/strong> ('::1', 'Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0', 'username', 'admin', 1, '2024-09-08 01:13:07', 1)","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2307","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:327","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->insert()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:805","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doInsert()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:749","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->insert()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php:77","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->insert()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:302","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\LoginModel->recordLoginAttempt()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:179","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordLoginAttempt()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:74","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->attempt()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php:77","qid":"5f9a6a88a737ebdc6ec503f727f74a31"},{"hover":"","class":"","duration":"2.13 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_info`\nWHERE<\/strong> `company_info`.`company_id` = '1'","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:86","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Controllers\\LoginController->loginAction()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php:86","qid":"ad334134429915ab8d2f8571cabc3772"}]},"badgeValue":6,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725757987.114442,"duration":"0.004681"},{"name":"Query","component":"Database","start":1725757987.11975,"duration":"0.000506","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725757987.160699,"duration":"0.001786","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> LOWER(`users`.`username`) = 'admin'\nAND<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\n LIMIT<\/strong> 1"},{"name":"Query","component":"Database","start":1725757987.321015,"duration":"0.001741","query":"SELECT<\/strong> *\nFROM<\/strong> `auth_identities`\nWHERE<\/strong> `user_id` = 1\nORDER<\/strong> BY<\/strong> `id`"},{"name":"Query","component":"Database","start":1725757987.710284,"duration":"0.003470","query":"UPDATE<\/strong> `auth_identities` SET `last_used_at` = '2024-09-08 01:13:07', `updated_at` = '2024-09-08 01:13:07'\nWHERE<\/strong> `auth_identities`.`id` IN<\/strong> ('1')"},{"name":"Query","component":"Database","start":1725757987.727159,"duration":"0.002216","query":"INSERT<\/strong> INTO<\/strong> `auth_logins` (`ip_address`, `user_agent`, `id_type`, `identifier`, `user_id`, `date`, `success`) VALUES<\/strong> ('::1', 'Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0', 'username', 'admin', 1, '2024-09-08 01:13:07', 1)"},{"name":"Query","component":"Database","start":1725757987.743635,"duration":"0.002128","query":"SELECT<\/strong> *\nFROM<\/strong> `company_info`\nWHERE<\/strong> `company_info`.`company_id` = '1'"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":0,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[]},{"title":"Files","titleSafe":"files","titleDetails":"( 199 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RedirectResponse.php","name":"RedirectResponse.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Security\\Security.php","name":"Security.php"},{"path":"SYSTEMPATH\\Security\\SecurityInterface.php","name":"SecurityInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\DotArrayFilter.php","name":"DotArrayFilter.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyInfoModel.php","name":"CompanyInfoModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords.php","name":"Passwords.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Controllers\\LoginController.php","name":"LoginController.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\UserIdentity.php","name":"UserIdentity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Result.php","name":"Result.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Viewable.php","name":"Viewable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Validation\\ValidationRules.php","name":"ValidationRules.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":199,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\CodeIgniter\\Shield\\Controllers\\LoginController","method":"loginAction","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":15,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"7.48","count":1},"dbquery":{"event":"dbquery","duration":"0.16","count":6}}},"badgeValue":7,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725757987.092864,"duration":0.007484912872314453},{"name":"Event: dbquery","component":"Events","start":1725757987.120261,"duration":2.8133392333984375e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.162488,"duration":1.5974044799804688e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.322762,"duration":3.1948089599609375e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.713761,"duration":3.2901763916015625e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.729379,"duration":2.7179718017578125e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.745767,"duration":1.9788742065429688e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725757987<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/login","csrf_test_name":"51c7740c289bc62da7830e46cc7deeb0","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"post":{"csrf_test_name":"f9410a743ea3bd7d789253d6078f06e6","username":"admin","password":"password0000"},"headers":{"Content-Type":"application\/x-www-form-urlencoded","Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Content-Length":"84","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/login","Cookie":"debug-bar-state=open; ci_session=3l2pi5l5nm9mru27gdb9jetf0h3uve3h","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"3l2pi5l5nm9mru27gdb9jetf0h3uve3h"},"request":"HTTP\/1.1","response":{"statusCode":303,"reason":"See Other","contentType":"text\/html; charset=UTF-8","headers":{"Cache-Control":"no-store, max-age=0, no-cache","Content-Type":"text\/html; charset=UTF-8","Location":"http:\/\/localhost:8080\/hi"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725757988.079279.json b/writable/debugbar/debugbar_1725757988.079279.json
deleted file mode 100644
index aaad5dc..0000000
--- a/writable/debugbar/debugbar_1725757988.079279.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hi","method":"GET","isAJAX":false,"startTime":1725757987.870742,"totalTime":192.3,"totalMemory":"6.211","segmentDuration":30,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725757987.884567,"duration":0.02499699592590332},{"name":"Routing","component":"Timer","start":1725757987.909565,"duration":3.600120544433594e-5},{"name":"Before Filters","component":"Timer","start":1725757987.911073,"duration":0.09119009971618652},{"name":"Controller","component":"Timer","start":1725757988.002266,"duration":0.06077718734741211},{"name":"Controller Constructor","component":"Timer","start":1725757988.002268,"duration":0.013625860214233398},{"name":"After Filters","component":"Timer","start":1725757988.063101,"duration":0.0007939338684082031}]},{"title":"Database","titleSafe":"database","titleDetails":"(4 total Queries, 4 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"1.97 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"e0d799c6f85ca5c55096b18c9eff81d5"},{"hover":"","class":"","duration":"1.39 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"8c35ca8cb8c49289f1d7c49b04ba5fa6"},{"hover":"","class":"","duration":"2.18 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-08 01:13:07'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"75f939e3c178b183b695c72e7ee8d35c"},{"hover":"","class":"","duration":"1.21 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\DashboardController.php:15","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\DashboardController->index()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"f890a51b574f99a90a539e571aed3f5e"}]},"badgeValue":4,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725757987.936996,"duration":"0.028902"},{"name":"Query","component":"Database","start":1725757987.968295,"duration":"0.001969","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725757987.986745,"duration":"0.001387","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725757988.000013,"duration":"0.002178","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-08 01:13:07'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725757988.05913,"duration":"0.001214","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725757988.021201,"duration":0.04119420051574707},{"name":"View: dashboard.php","component":"Views","start":1725757988.015965,"duration":0.046766042709350586}]},{"title":"Files","titleSafe":"files","titleDetails":"( 194 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\DashboardController.php","name":"DashboardController.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\dashboard.php","name":"dashboard.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":194,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\DashboardController","method":"index","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"9.09","count":1},"dbquery":{"event":"dbquery","duration":"0.20","count":4}}},"badgeValue":5,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725757987.897657,"duration":0.009088993072509766},{"name":"Event: dbquery","component":"Events","start":1725757987.970277,"duration":5.984306335449219e-5},{"name":"Event: dbquery","component":"Events","start":1725757987.98814,"duration":5.2928924560546875e-5},{"name":"Event: dbquery","component":"Events","start":1725757988.002196,"duration":2.5987625122070312e-5},{"name":"Event: dbquery","component":"Events","start":1725757988.060354,"duration":5.793571472167969e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":[]},"session":{"__ci_last_regenerate":"
1725757987<\/pre>","_ci_previous_url":"http:\/\/localhost:8080\/login","csrf_test_name":"51c7740c289bc62da7830e46cc7deeb0","user":"
Array\n(\n    [id] => 1\n)\n<\/pre>","companyInfo":"
App\\Entities\\CompanyInfo Object\n(\n    [datamap:protected] => Array\n        (\n        )\n\n    [dates:protected] => Array\n        (\n            [0] => created_at\n            [1] => updated_at\n            [2] => deleted_at\n        )\n\n    [casts:protected] => Array\n        (\n        )\n\n    [castHandlers:protected] => Array\n        (\n        )\n\n    [defaultCastHandlers:CodeIgniter\\Entity\\Entity:private] => Array\n        (\n            [array] => CodeIgniter\\Entity\\Cast\\ArrayCast\n            [bool] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [boolean] => CodeIgniter\\Entity\\Cast\\BooleanCast\n            [csv] => CodeIgniter\\Entity\\Cast\\CSVCast\n            [datetime] => CodeIgniter\\Entity\\Cast\\DatetimeCast\n            [double] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [float] => CodeIgniter\\Entity\\Cast\\FloatCast\n            [int] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [integer] => CodeIgniter\\Entity\\Cast\\IntegerCast\n            [int-bool] => CodeIgniter\\Entity\\Cast\\IntBoolCast\n            [json] => CodeIgniter\\Entity\\Cast\\JsonCast\n            [object] => CodeIgniter\\Entity\\Cast\\ObjectCast\n            [string] => CodeIgniter\\Entity\\Cast\\StringCast\n            [timestamp] => CodeIgniter\\Entity\\Cast\\TimestampCast\n            [uri] => CodeIgniter\\Entity\\Cast\\URICast\n        )\n\n    [attributes:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [original:protected] => Array\n        (\n            [company_id] => 1\n            [company_code] => KW\n            [company_name] => Lumina One Corporation\n            [trade_name] => Karat World\n            [bir_tin] => \n            [company_reg_no] => \n            [address] => \n            [contact_number] => \n            [email_address] => \n            [created_at] => \n            [created_by] => \n            [updated_at] => \n            [updated_by] => \n            [deleted_at] => \n        )\n\n    [_cast:CodeIgniter\\Entity\\Entity:private] => 1\n)\n<\/pre>"},"headers":{"Host":"localhost:8080","User-Agent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko\/20100101 Firefox\/131.0","Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/avif,image\/webp,image\/png,image\/svg+xml,*\/*;q=0.8","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate, br, zstd","Referer":"http:\/\/localhost:8080\/login","Connection":"keep-alive","Cookie":"debug-bar-state=open; ci_session=6erq1s2mufj4qfd7vvoobb2gif2c3ass","Upgrade-Insecure-Requests":"1","Sec-Fetch-Dest":"document","Sec-Fetch-Mode":"navigate","Sec-Fetch-Site":"same-origin","Sec-Fetch-User":"?1","Priority":"u=0, i"},"cookies":{"debug-bar-state":"open","ci_session":"6erq1s2mufj4qfd7vvoobb2gif2c3ass"},"request":"HTTP\/1.1","response":{"statusCode":200,"reason":"OK","contentType":"text\/html; charset=UTF-8","headers":{"Content-Type":"text\/html; charset=UTF-8"}}},"config":{"ciVersion":"4.4.8","phpVersion":"8.2.7","phpSAPI":"cli-server","environment":"development","baseURL":"http:\/\/localhost:8080\/","timezone":"UTC","locale":"en","cspEnabled":false}}
\ No newline at end of file
diff --git a/writable/debugbar/debugbar_1725757991.388981.json b/writable/debugbar/debugbar_1725757991.388981.json
deleted file mode 100644
index 8f9b990..0000000
--- a/writable/debugbar/debugbar_1725757991.388981.json
+++ /dev/null
@@ -1 +0,0 @@
-{"url":"http:\/\/localhost:8080\/hr\/emp","method":"GET","isAJAX":false,"startTime":1725757991.041121,"totalTime":227.89999999999998,"totalMemory":"7.017","segmentDuration":35,"segmentCount":7,"CI_VERSION":"4.4.8","collectors":[{"title":"Timers","titleSafe":"timers","titleDetails":"","display":[],"badgeValue":null,"isEmpty":false,"hasTabContent":false,"hasLabel":false,"icon":"","hasTimelineData":true,"timelineData":[{"name":"Bootstrap","component":"Timer","start":1725757991.050661,"duration":0.019990921020507812},{"name":"Routing","component":"Timer","start":1725757991.070654,"duration":3.600120544433594e-5},{"name":"Before Filters","component":"Timer","start":1725757991.07213,"duration":0.062415122985839844},{"name":"Controller","component":"Timer","start":1725757991.134549,"duration":0.13449716567993164},{"name":"Controller Constructor","component":"Timer","start":1725757991.134551,"duration":0.0009958744049072266},{"name":"After Filters","component":"Timer","start":1725757991.269065,"duration":0.00018715858459472656}]},{"title":"Database","titleSafe":"database","titleDetails":"(9 total Queries, 9 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.65 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:51","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->hydrate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php:59","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Handlers\\DatabaseHandler->has()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php:25","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Settings\\Settings->get()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:685","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0setting()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:703","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionUserInfo()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:390","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->getSessionKey()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php:186","qid":"94a36d66bbaf2d482b9fc382e087297b"},{"hover":"","class":"","duration":"1.35 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:200","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:580","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFind()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->find()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:394","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->findById()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:374","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->checkUserState()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:54","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->loggedIn()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:183","qid":"dd310e172074c43622babc16f8127a1f"},{"hover":"","class":"","duration":"2.26 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-08 01:13:11'\nWHERE<\/strong> `id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:2474","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->update()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php:903","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\UserModel->updateActiveDate()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php:56","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Authentication\\Authenticators\\Session->recordActiveDate()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Filters\\Filters.php:182","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Filters\\SessionAuth->before()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:475","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Filters\\Filters->run()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php:387","qid":"080802ba399b9253dd339ce4e8a62ede"},{"hover":"","class":"","duration":"1.86 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `employee`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:203","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:203","qid":"8fa857abef99afdbcc53f8830df7f3f1"},{"hover":"","class":"","duration":"1.54 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_branch`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:204","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:204","qid":"11b741e04220d565b051fc76866cab7c"},{"hover":"","class":"","duration":"1.36 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:205","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:205","qid":"9cdaa9feed81cfe011e73faca2dd7d49"},{"hover":"","class":"","duration":"1.56 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `job_title`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:206","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:206","qid":"497d8fa4eeb444477fa74e75f012c287"},{"hover":"","class":"","duration":"1.44 ms","sql":"SELECT<\/strong> *\nFROM<\/strong> `emp_status`","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Model.php:243","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\BaseModel.php:641","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Model->doFindAll()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:207","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\BaseModel->findAll()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\Controllers\\HRController.php:207","qid":"dc253e1396b52265e1681a9875477739"},{"hover":"","class":"","duration":"1.48 ms","sql":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1","trace":[{"file":"SYSTEMPATH\\Database\\BaseBuilder.php:1616","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseConnection->query()","index":"\u00a0\u00a01\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Database\\BaseBuilder->get()","index":"\u00a0\u00a02\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:320","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Models\\GroupModel->getForUser()","index":"\u00a0\u00a03\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php:296","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->populateGroups()","index":"\u00a0\u00a04\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php:157","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\Shield\\Entities\\User->inGroup()","index":"\u00a0\u00a05\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:228","args":["C:\\Projects\\webroot\\www\\kwpayroll\\app\\Views\\templates\\adminlte\\generalcontent.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0include()","index":"\u00a0\u00a06\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:231","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->CodeIgniter\\View\\{closure}","index":"\u00a0\u00a07\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\View\\View.php:244","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a08\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Common.php:1178","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\View\\View->render()","index":"\u00a0\u00a09\u00a0\u00a0\u00a0\u00a0"},{"file":"APPPATH\\Controllers\\HRController.php:230","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0view()","index":"\u00a010\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:943","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0App\\Controllers\\HRController->employee()","index":"\u00a011\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:503","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->runController()","index":"\u00a012\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\CodeIgniter.php:361","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->handleRequest()","index":"\u00a013\u00a0\u00a0\u00a0\u00a0"},{"file":"FCPATH\\index.php:79","function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0CodeIgniter\\CodeIgniter->run()","index":"\u00a014\u00a0\u00a0\u00a0\u00a0"},{"file":"SYSTEMPATH\\Commands\\Server\\rewrite.php:47","args":["C:\\Projects\\webroot\\www\\kwpayroll\\public\\index.php"],"function":"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0require_once()","index":"\u00a015\u00a0\u00a0\u00a0\u00a0"}],"trace-file":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php:45","qid":"f24cb270ca3899ef3c8ca8d11785c1db"}]},"badgeValue":9,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADMSURBVEhLY6A3YExLSwsA4nIycQDIDIhRWEBqamo\/UNF\/SjDQjF6ocZgAKPkRiFeEhoYyQ4WIBiA9QAuWAPEHqBAmgLqgHcolGQD1V4DMgHIxwbCxYD+QBqcKINseKo6eWrBioPrtQBq\/BcgY5ht0cUIYbBg2AJKkRxCNWkDQgtFUNJwtABr+F6igE8olGQD114HMgHIxAVDyAhA\/AlpSA8RYUwoeXAPVex5qHCbIyMgwBCkAuQJIY00huDBUz\/mUlBQDqHGjgBjAwAAACexpph6oHSQAAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"Connecting to Database: \"default\"","component":"Database","start":1725757991.096223,"duration":"0.013397"},{"name":"Query","component":"Database","start":1725757991.11083,"duration":"0.000655","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1725757991.124726,"duration":"0.001354","query":"SELECT<\/strong> *\nFROM<\/strong> `users`\nWHERE<\/strong> `users`.`deleted_at` IS<\/strong> NULL<\/strong>\nAND<\/strong> `users`.`id` = 1"},{"name":"Query","component":"Database","start":1725757991.132186,"duration":"0.002265","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-08 01:13:11'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1725757991.14951,"duration":"0.001856","query":"SELECT<\/strong> *\nFROM<\/strong> `employee`"},{"name":"Query","component":"Database","start":1725757991.176597,"duration":"0.001537","query":"SELECT<\/strong> *\nFROM<\/strong> `company_branch`"},{"name":"Query","component":"Database","start":1725757991.201864,"duration":"0.001363","query":"SELECT<\/strong> *\nFROM<\/strong> `company_dept`"},{"name":"Query","component":"Database","start":1725757991.225014,"duration":"0.001559","query":"SELECT<\/strong> *\nFROM<\/strong> `job_title`"},{"name":"Query","component":"Database","start":1725757991.241136,"duration":"0.001445","query":"SELECT<\/strong> *\nFROM<\/strong> `emp_status`"},{"name":"Query","component":"Database","start":1725757991.266867,"duration":"0.001477","query":"SELECT<\/strong> `group`\nFROM<\/strong> `auth_groups_users`\nWHERE<\/strong> `user_id` = 1"}]},{"title":"Logs","titleSafe":"logs","titleDetails":"","display":{"logs":[{"level":"info","msg":"Session: Class initialized using 'CodeIgniter\\Session\\Handlers\\FileHandler' driver."}]},"badgeValue":null,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACYSURBVEhLYxgFJIHU1FSjtLS0i0D8AYj7gEKMEBkqAaAFF4D4ERCvAFrwH4gDoFIMKSkpFkB+OTEYqgUTACXfA\/GqjIwMQyD9H2hRHlQKJFcBEiMGQ7VgAqCBvUgK32dmZspCpagGGNPT0\/1BLqeF4bQHQJePpiIwhmrBBEADR1MRfgB0+WgqAmOoFkwANHA0FY0CUgEDAwCQ0PUpNB3kqwAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Views","titleSafe":"views","titleDetails":"","display":[],"badgeValue":2,"isEmpty":false,"hasTabContent":false,"hasLabel":true,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADeSURBVEhL7ZSxDcIwEEWNYA0YgGmgyAaJLTcUaaBzQQEVjMEabBQxAdw53zTHiThEovGTfnE\/9rsoRUxhKLOmaa6Uh7X2+UvguLCzVxN1XW9x4EYHzik033Hp3X0LO+DaQG8MDQcuq6qao4qkHuMgQggLvkPLjqh00ZgFDBacMJYFkuwFlH1mshdkZ5JPJERA9JpI6xNCBESvibQ+IURA9JpI6xNCBESvibQ+IURA9DTsuHTOrVFFxixgB\/eUFlU8uKJ0eDBFOu\/9EvoeKnlJS2\/08Tc8NOwQ8sIfMeYFjqKDjdU2sp4AAAAASUVORK5CYII=","hasTimelineData":true,"timelineData":[{"name":"View: templates\/adminlte\/generalcontent.php","component":"Views","start":1725757991.265625,"duration":0.003261089324951172},{"name":"View: hr\/employeeview.php","component":"Views","start":1725757991.2648,"duration":0.004168033599853516}]},{"title":"Files","titleSafe":"files","titleDetails":"( 205 )","display":{"coreFiles":[{"path":"SYSTEMPATH\\API\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\Autoloader\\Autoloader.php","name":"Autoloader.php"},{"path":"SYSTEMPATH\\Autoloader\\FileLocator.php","name":"FileLocator.php"},{"path":"SYSTEMPATH\\BaseModel.php","name":"BaseModel.php"},{"path":"SYSTEMPATH\\Cache\\CacheFactory.php","name":"CacheFactory.php"},{"path":"SYSTEMPATH\\Cache\\CacheInterface.php","name":"CacheInterface.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Cache\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Cache\\ResponseCache.php","name":"ResponseCache.php"},{"path":"SYSTEMPATH\\CodeIgniter.php","name":"CodeIgniter.php"},{"path":"SYSTEMPATH\\Commands\\Server\\rewrite.php","name":"rewrite.php"},{"path":"SYSTEMPATH\\Common.php","name":"Common.php"},{"path":"SYSTEMPATH\\Config\\AutoloadConfig.php","name":"AutoloadConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseConfig.php","name":"BaseConfig.php"},{"path":"SYSTEMPATH\\Config\\BaseService.php","name":"BaseService.php"},{"path":"SYSTEMPATH\\Config\\DotEnv.php","name":"DotEnv.php"},{"path":"SYSTEMPATH\\Config\\Factories.php","name":"Factories.php"},{"path":"SYSTEMPATH\\Config\\Factory.php","name":"Factory.php"},{"path":"SYSTEMPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"SYSTEMPATH\\Config\\Services.php","name":"Services.php"},{"path":"SYSTEMPATH\\Config\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\Controller.php","name":"Controller.php"},{"path":"SYSTEMPATH\\Cookie\\CloneableCookieInterface.php","name":"CloneableCookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\Cookie.php","name":"Cookie.php"},{"path":"SYSTEMPATH\\Cookie\\CookieInterface.php","name":"CookieInterface.php"},{"path":"SYSTEMPATH\\Cookie\\CookieStore.php","name":"CookieStore.php"},{"path":"SYSTEMPATH\\Database\\BaseBuilder.php","name":"BaseBuilder.php"},{"path":"SYSTEMPATH\\Database\\BaseConnection.php","name":"BaseConnection.php"},{"path":"SYSTEMPATH\\Database\\BaseResult.php","name":"BaseResult.php"},{"path":"SYSTEMPATH\\Database\\Config.php","name":"Config.php"},{"path":"SYSTEMPATH\\Database\\ConnectionInterface.php","name":"ConnectionInterface.php"},{"path":"SYSTEMPATH\\Database\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Builder.php","name":"Builder.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Connection.php","name":"Connection.php"},{"path":"SYSTEMPATH\\Database\\MySQLi\\Result.php","name":"Result.php"},{"path":"SYSTEMPATH\\Database\\Query.php","name":"Query.php"},{"path":"SYSTEMPATH\\Database\\QueryInterface.php","name":"QueryInterface.php"},{"path":"SYSTEMPATH\\Database\\ResultInterface.php","name":"ResultInterface.php"},{"path":"SYSTEMPATH\\Debug\\Exceptions.php","name":"Exceptions.php"},{"path":"SYSTEMPATH\\Debug\\Timer.php","name":"Timer.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar.php","name":"Toolbar.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\BaseCollector.php","name":"BaseCollector.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Database.php","name":"Database.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Files.php","name":"Files.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Logs.php","name":"Logs.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Routes.php","name":"Routes.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Timers.php","name":"Timers.php"},{"path":"SYSTEMPATH\\Debug\\Toolbar\\Collectors\\Views.php","name":"Views.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\BaseCast.php","name":"BaseCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\CastInterface.php","name":"CastInterface.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\DatetimeCast.php","name":"DatetimeCast.php"},{"path":"SYSTEMPATH\\Entity\\Cast\\IntegerCast.php","name":"IntegerCast.php"},{"path":"SYSTEMPATH\\Entity\\Entity.php","name":"Entity.php"},{"path":"SYSTEMPATH\\Events\\Events.php","name":"Events.php"},{"path":"SYSTEMPATH\\Filters\\DebugToolbar.php","name":"DebugToolbar.php"},{"path":"SYSTEMPATH\\Filters\\FilterInterface.php","name":"FilterInterface.php"},{"path":"SYSTEMPATH\\Filters\\Filters.php","name":"Filters.php"},{"path":"SYSTEMPATH\\HTTP\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"SYSTEMPATH\\HTTP\\Header.php","name":"Header.php"},{"path":"SYSTEMPATH\\HTTP\\IncomingRequest.php","name":"IncomingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\Message.php","name":"Message.php"},{"path":"SYSTEMPATH\\HTTP\\MessageInterface.php","name":"MessageInterface.php"},{"path":"SYSTEMPATH\\HTTP\\MessageTrait.php","name":"MessageTrait.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequest.php","name":"OutgoingRequest.php"},{"path":"SYSTEMPATH\\HTTP\\OutgoingRequestInterface.php","name":"OutgoingRequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\Request.php","name":"Request.php"},{"path":"SYSTEMPATH\\HTTP\\RequestInterface.php","name":"RequestInterface.php"},{"path":"SYSTEMPATH\\HTTP\\RequestTrait.php","name":"RequestTrait.php"},{"path":"SYSTEMPATH\\HTTP\\Response.php","name":"Response.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseInterface.php","name":"ResponseInterface.php"},{"path":"SYSTEMPATH\\HTTP\\ResponseTrait.php","name":"ResponseTrait.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURI.php","name":"SiteURI.php"},{"path":"SYSTEMPATH\\HTTP\\SiteURIFactory.php","name":"SiteURIFactory.php"},{"path":"SYSTEMPATH\\HTTP\\URI.php","name":"URI.php"},{"path":"SYSTEMPATH\\HTTP\\UserAgent.php","name":"UserAgent.php"},{"path":"SYSTEMPATH\\Helpers\\array_helper.php","name":"array_helper.php"},{"path":"SYSTEMPATH\\Helpers\\kint_helper.php","name":"kint_helper.php"},{"path":"SYSTEMPATH\\Helpers\\url_helper.php","name":"url_helper.php"},{"path":"SYSTEMPATH\\I18n\\Time.php","name":"Time.php"},{"path":"SYSTEMPATH\\I18n\\TimeTrait.php","name":"TimeTrait.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Log\\Handlers\\HandlerInterface.php","name":"HandlerInterface.php"},{"path":"SYSTEMPATH\\Log\\Logger.php","name":"Logger.php"},{"path":"SYSTEMPATH\\Model.php","name":"Model.php"},{"path":"SYSTEMPATH\\Modules\\Modules.php","name":"Modules.php"},{"path":"SYSTEMPATH\\Router\\RouteCollection.php","name":"RouteCollection.php"},{"path":"SYSTEMPATH\\Router\\RouteCollectionInterface.php","name":"RouteCollectionInterface.php"},{"path":"SYSTEMPATH\\Router\\Router.php","name":"Router.php"},{"path":"SYSTEMPATH\\Router\\RouterInterface.php","name":"RouterInterface.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"SYSTEMPATH\\Session\\Handlers\\FileHandler.php","name":"FileHandler.php"},{"path":"SYSTEMPATH\\Session\\Session.php","name":"Session.php"},{"path":"SYSTEMPATH\\Session\\SessionInterface.php","name":"SessionInterface.php"},{"path":"SYSTEMPATH\\Superglobals.php","name":"Superglobals.php"},{"path":"SYSTEMPATH\\ThirdParty\\Escaper\\Escaper.php","name":"Escaper.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\FacadeInterface.php","name":"FacadeInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Kint.php","name":"Kint.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\AbstractRenderer.php","name":"AbstractRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\CliRenderer.php","name":"CliRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\RichRenderer.php","name":"RichRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Renderer\\TextRenderer.php","name":"TextRenderer.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\Utils.php","name":"Utils.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init.php","name":"init.php"},{"path":"SYSTEMPATH\\ThirdParty\\Kint\\init_helpers.php","name":"init_helpers.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LogLevel.php","name":"LogLevel.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerAwareTrait.php","name":"LoggerAwareTrait.php"},{"path":"SYSTEMPATH\\ThirdParty\\PSR\\Log\\LoggerInterface.php","name":"LoggerInterface.php"},{"path":"SYSTEMPATH\\Traits\\ConditionalTrait.php","name":"ConditionalTrait.php"},{"path":"SYSTEMPATH\\Validation\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\CreditCardRules.php","name":"CreditCardRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FileRules.php","name":"FileRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\FormatRules.php","name":"FormatRules.php"},{"path":"SYSTEMPATH\\Validation\\StrictRules\\Rules.php","name":"Rules.php"},{"path":"SYSTEMPATH\\Validation\\Validation.php","name":"Validation.php"},{"path":"SYSTEMPATH\\Validation\\ValidationInterface.php","name":"ValidationInterface.php"},{"path":"SYSTEMPATH\\View\\RendererInterface.php","name":"RendererInterface.php"},{"path":"SYSTEMPATH\\View\\Table.php","name":"Table.php"},{"path":"SYSTEMPATH\\View\\View.php","name":"View.php"},{"path":"SYSTEMPATH\\View\\ViewDecoratorTrait.php","name":"ViewDecoratorTrait.php"},{"path":"SYSTEMPATH\\bootstrap.php","name":"bootstrap.php"}],"userFiles":[{"path":"APPPATH\\Common.php","name":"Common.php"},{"path":"APPPATH\\Config\\App.php","name":"App.php"},{"path":"APPPATH\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\Config\\Autoload.php","name":"Autoload.php"},{"path":"APPPATH\\Config\\Boot\\development.php","name":"development.php"},{"path":"APPPATH\\Config\\Cache.php","name":"Cache.php"},{"path":"APPPATH\\Config\\Constants.php","name":"Constants.php"},{"path":"APPPATH\\Config\\ContentSecurityPolicy.php","name":"ContentSecurityPolicy.php"},{"path":"APPPATH\\Config\\Cookie.php","name":"Cookie.php"},{"path":"APPPATH\\Config\\Database.php","name":"Database.php"},{"path":"APPPATH\\Config\\Events.php","name":"Events.php"},{"path":"APPPATH\\Config\\Exceptions.php","name":"Exceptions.php"},{"path":"APPPATH\\Config\\Feature.php","name":"Feature.php"},{"path":"APPPATH\\Config\\Filters.php","name":"Filters.php"},{"path":"APPPATH\\Config\\Kint.php","name":"Kint.php"},{"path":"APPPATH\\Config\\Logger.php","name":"Logger.php"},{"path":"APPPATH\\Config\\Modules.php","name":"Modules.php"},{"path":"APPPATH\\Config\\Paths.php","name":"Paths.php"},{"path":"APPPATH\\Config\\Routes.php","name":"Routes.php"},{"path":"APPPATH\\Config\\Routing.php","name":"Routing.php"},{"path":"APPPATH\\Config\\Security.php","name":"Security.php"},{"path":"APPPATH\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\Config\\Session.php","name":"Session.php"},{"path":"APPPATH\\Config\\Toolbar.php","name":"Toolbar.php"},{"path":"APPPATH\\Config\\UserAgents.php","name":"UserAgents.php"},{"path":"APPPATH\\Config\\Validation.php","name":"Validation.php"},{"path":"APPPATH\\Config\\View.php","name":"View.php"},{"path":"APPPATH\\Controllers\\BaseController.php","name":"BaseController.php"},{"path":"APPPATH\\Controllers\\HRController.php","name":"HRController.php"},{"path":"APPPATH\\Entities\\CompanyBranch.php","name":"CompanyBranch.php"},{"path":"APPPATH\\Entities\\CompanyDepartment.php","name":"CompanyDepartment.php"},{"path":"APPPATH\\Entities\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Entities\\Employee.php","name":"Employee.php"},{"path":"APPPATH\\Entities\\EmploymentStatus.php","name":"EmploymentStatus.php"},{"path":"APPPATH\\Entities\\JobTitle.php","name":"JobTitle.php"},{"path":"APPPATH\\Models\\CompanyBranchModel.php","name":"CompanyBranchModel.php"},{"path":"APPPATH\\Models\\CompanyDepartmentModel.php","name":"CompanyDepartmentModel.php"},{"path":"APPPATH\\Models\\EmployeeModel.php","name":"EmployeeModel.php"},{"path":"APPPATH\\Models\\EmploymentStatusModel.php","name":"EmploymentStatusModel.php"},{"path":"APPPATH\\Models\\JobTitleModel.php","name":"JobTitleModel.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Config\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\ArrayHandler.php","name":"ArrayHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\BaseHandler.php","name":"BaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Handlers\\DatabaseHandler.php","name":"DatabaseHandler.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Helpers\\setting_helper.php","name":"setting_helper.php"},{"path":"APPPATH\\ThirdParty\\settings-2.2.0\\src\\Settings.php","name":"Settings.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authentication.php","name":"Authentication.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\AuthenticatorInterface.php","name":"AuthenticatorInterface.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Authenticators\\Session.php","name":"Session.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Passwords\\ValidationRules.php","name":"ValidationRules.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasAccessTokens.php","name":"HasAccessTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authentication\\Traits\\HasHmacTokens.php","name":"HasHmacTokens.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Authorization\\Traits\\Authorizable.php","name":"Authorizable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Collectors\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Auth.php","name":"Auth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\AuthRoutes.php","name":"AuthRoutes.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Registrar.php","name":"Registrar.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Config\\Services.php","name":"Services.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\Entity.php","name":"Entity.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Entities\\User.php","name":"User.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Filters\\SessionAuth.php","name":"SessionAuth.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\auth_helper.php","name":"auth_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Helpers\\email_helper.php","name":"email_helper.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\BaseModel.php","name":"BaseModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\CheckQueryReturnTrait.php","name":"CheckQueryReturnTrait.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\GroupModel.php","name":"GroupModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\LoginModel.php","name":"LoginModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\RememberModel.php","name":"RememberModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserIdentityModel.php","name":"UserIdentityModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Models\\UserModel.php","name":"UserModel.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Activatable.php","name":"Activatable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Bannable.php","name":"Bannable.php"},{"path":"APPPATH\\ThirdParty\\shield-1.0.3\\src\\Traits\\Resettable.php","name":"Resettable.php"},{"path":"APPPATH\\Views\\hr\\employeeview.php","name":"employeeview.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\errormessage.php","name":"errormessage.php"},{"path":"APPPATH\\Views\\templates\\adminlte\\generalcontent.php","name":"generalcontent.php"},{"path":"FCPATH\\index.php","name":"index.php"}]},"badgeValue":205,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGBSURBVEhL7ZQ9S8NQGIVTBQUncfMfCO4uLgoKbuKQOWg+OkXERRE1IAXrIHbVDrqIDuLiJgj+gro7S3dnpfq88b1FMTE3VZx64HBzzvvZWxKnj15QCcPwCD5HUfSWR+JtzgmtsUcQBEva5IIm9SwSu+95CAWbUuy67qBa32ByZEDpIaZYZSZMjjQuPcQUq8yEyYEb8FSerYeQVGbAFzJkX1PyQWLhgCz0BxTCekC1Wp0hsa6yokzhed4oje6Iz6rlJEkyIKfUEFtITVtQdAibn5rMyaYsMS+a5wTv8qeXMhcU16QZbKgl3hbs+L4\/pnpdc87MElZgq10p5DxGdq8I7xrvUWUKvG3NbSK7ubngYzdJwSsF7TiOh9VOgfcEz1UayNe3JUPM1RWC5GXYgTfc75B4NBmXJnAtTfpABX0iPvEd9ezALwkplCFXcr9styiNOKc1RRZpaPM9tcqBwlWzGY1qPL9wjqRBgF5BH6j8HWh2S7MHlX8PrmbK+k\/8PzjOOzx1D3i1pKTTAAAAAElFTkSuQmCC","hasTimelineData":false,"timelineData":[]},{"title":"Routes","titleSafe":"routes","titleDetails":"","display":{"matchedRoute":[{"directory":"","controller":"\\App\\Controllers\\HRController","method":"employee","paramCount":0,"truePCount":0,"params":[]}],"routes":[{"method":"GET","route":"\/","handler":"\\App\\Controllers\\Home::index"},{"method":"GET","route":"hi","handler":"\\App\\Controllers\\DashboardController::index"},{"method":"GET","route":"hr","handler":"\\App\\Controllers\\HRController::index"},{"method":"GET","route":"hr\/dept","handler":"\\App\\Controllers\\HRController::companyDepartment"},{"method":"GET","route":"hr\/branch","handler":"\\App\\Controllers\\HRController::companyBranch"},{"method":"GET","route":"hr\/jobtitle","handler":"\\App\\Controllers\\HRController::jobTitle"},{"method":"GET","route":"hr\/empstatus","handler":"\\App\\Controllers\\HRController::employmentStatus"},{"method":"GET","route":"hr\/emp","handler":"\\App\\Controllers\\HRController::employee"},{"method":"GET","route":"payroll","handler":"\\App\\Controllers\\PayrollController::index"},{"method":"GET","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"GET","route":"adminuser","handler":"\\App\\Controllers\\AdministratorController::index"},{"method":"GET","route":"adminuser\/newuser","handler":"\\App\\Controllers\\AdministratorController::newUserView"},{"method":"GET","route":"adminuser\/getuserbyid\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::getUserById\/$1"},{"method":"GET","route":"adminuser\/editusergroup\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserGroupView\/$1"},{"method":"GET","route":"adminuser\/edituserpermission\/([0-9]+)","handler":"\\App\\Controllers\\AdministratorController::editUserPermissionView\/$1"},{"method":"GET","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerView"},{"method":"GET","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginView"},{"method":"GET","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginView"},{"method":"GET","route":"login\/verify-magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::verify"},{"method":"GET","route":"logout","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::logoutAction"},{"method":"GET","route":"auth\/a\/show","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::show"},{"method":"POST","route":"hr\/adddept","handler":"\\App\\Controllers\\HRController::addCompanyDepartment"},{"method":"POST","route":"hr\/addbranch","handler":"\\App\\Controllers\\HRController::addCompanyBranch"},{"method":"POST","route":"hr\/addjobtitle","handler":"\\App\\Controllers\\HRController::addJobTitle"},{"method":"POST","route":"hr\/addempstatus","handler":"\\App\\Controllers\\HRController::addEmploymentStatus"},{"method":"POST","route":"hr\/addemp","handler":"\\App\\Controllers\\HRController::addEmployee"},{"method":"POST","route":"payroll\/generatepayroll","handler":"\\App\\Controllers\\PayrollController::generatePayroll"},{"method":"POST","route":"adminuser\/adduser","handler":"\\App\\Controllers\\AdministratorController::saveNewUser"},{"method":"POST","route":"adminuser\/updateuser","handler":"\\App\\Controllers\\AdministratorController::updateUser"},{"method":"POST","route":"adminuser\/deleteuser","handler":"\\App\\Controllers\\AdministratorController::deleteUser"},{"method":"POST","route":"adminuser\/saveusergroup","handler":"\\App\\Controllers\\AdministratorController::saveEditedUserGroup"},{"method":"POST","route":"register","handler":"\\CodeIgniter\\Shield\\Controllers\\RegisterController::registerAction"},{"method":"POST","route":"login","handler":"\\CodeIgniter\\Shield\\Controllers\\LoginController::loginAction"},{"method":"POST","route":"login\/magic-link","handler":"\\CodeIgniter\\Shield\\Controllers\\MagicLinkController::loginAction"},{"method":"POST","route":"auth\/a\/handle","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::handle"},{"method":"POST","route":"auth\/a\/verify","handler":"\\CodeIgniter\\Shield\\Controllers\\ActionController::verify"}]},"badgeValue":22,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFDSURBVEhL7ZRNSsNQFIUjVXSiOFEcuQIHDpzpxC0IGYeE\/BEInbWlCHEDLsSiuANdhKDjgm6ggtSJ+l25ldrmmTwIgtgDh\/t37r1J+16cX0dRFMtpmu5pWAkrvYjjOB7AETzStBFW+inxu3KUJMmhludQpoflS1zXban4LYqiO224h6VLTHr8Z+z8EpIHFF9gG78nDVmW7UgTHKjsCyY98QP+pcq+g8Ku2s8G8X3f3\/I8b038WZTp+bO38zxfFd+I6YY6sNUvFlSDk9CRhiAI1jX1I9Cfw7GG1UB8LAuwbU0ZwQnbRDeEN5qqBxZMLtE1ti9LtbREnMIuOXnyIf5rGIb7Wq8HmlZgwYBH7ORTcKH5E4mpjeGt9fBZcHE2GCQ3Vt7oTNPNg+FXLHnSsHkw\/FR+Gg2bB8Ptzrst\/v6C\/wrH+QB+duli6MYJdQAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]},{"title":"Events","titleSafe":"events","titleDetails":"","display":{"events":{"pre_system":{"event":"pre_system","duration":"8.41","count":1},"dbquery":{"event":"dbquery","duration":"0.26","count":9}}},"badgeValue":10,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEASURBVEhL7ZXNDcIwDIVTsRBH1uDQDdquUA6IM1xgCA6MwJUN2hk6AQzAz0vl0ETUxC5VT3zSU5w81\/mRMGZysixbFEVR0jSKNt8geQU9aRpFmp\/keX6AbjZ5oB74vsaN5lSzA4tLSjpBFxsjeSuRy4d2mDdQTWU7YLbXTNN05mKyovj5KL6B7q3hoy3KwdZxBlT+Ipz+jPHrBqOIynZgcZonoukb\/0ckiTHqNvDXtXEAaygRbaB9FvUTjRUHsIYS0QaSp+Dw6wT4hiTmYHOcYZsdLQ2CbXa4ftuuYR4x9vYZgdb4vsFYUdmABMYeukK9\/SUme3KMFQ77+Yfzh8eYF8+orDuDWU5LAAAAAElFTkSuQmCC","hasTimelineData":true,"timelineData":[{"name":"Event: pre_system","component":"Events","start":1725757991.059728,"duration":0.008409976959228516},{"name":"Event: dbquery","component":"Events","start":1725757991.111493,"duration":4.792213439941406e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.126084,"duration":2.47955322265625e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.134457,"duration":3.600120544433594e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.151372,"duration":2.5033950805664062e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.178137,"duration":2.5033950805664062e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.20323,"duration":2.2172927856445312e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.226577,"duration":2.288818359375e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.242585,"duration":3.0040740966796875e-5},{"name":"Event: dbquery","component":"Events","start":1725757991.268348,"duration":2.5033950805664062e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":"

Current User<\/h3>
User ID<\/td>#1<\/td><\/tr>
Username<\/td>admin<\/td><\/tr>
Email<\/td>me@yahoo.com<\/td><\/tr>
Groups<\/td>superadmin<\/td><\/tr>
Permissions<\/td><\/td><\/tr><\/tbody><\/table>","badgeValue":1,"isEmpty":false,"hasTabContent":true,"hasLabel":false,"icon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADLSURBVEhL5ZRLCsIwGAa7UkE9gd5HUfEoekxxJx7AhXoCca\/fhESkJiQxBHwMDG3S\/9EmJc0n0JMruZVXK\/fMdWQRY7mXt4A7OZJvwZu74hRayIEc2nv3jGtXZrOWrnifiRY0OkhiWK5sWGeS52bkZymJ2ZhRJmwmySxLCL6CmIsZZUIixkiNezCRR+kSUyWH3Cgn6SuQIk2iuOBckvN+t8FMnq1TJloUN3jefN9mhvJeCAVWb8CyUDj0vxc3iPFHDaofFdUPu2+iae7nYJMCY\/1bpAAAAABJRU5ErkJggg==","hasTimelineData":false,"timelineData":[]}],"vars":{"varData":{"View Data":{"branches":"
⧉<\/span>⌕<\/span>