diff --git a/app/Config/Routes.php b/app/Config/Routes.php index a6fd181..4b86890 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -35,8 +35,8 @@ $routes->get('payroll', 'PayrollController::index'); $routes->get('payroll/paygroup', 'PayrollController::payrollGroup'); $routes->post('payroll/addpaygroup', 'PayrollController::addPayrollGroup'); -$routes->get('payroll/emppaygrpassign', 'PayrollController::employeePayrollGroupAssignment'); -$routes->post('payroll/addemppaygrpassign', 'PayrollController::addEmployeePayrollGroupAssignment'); +$routes->get('payroll/inded', 'PayrollController::incomeDeduction'); +$routes->post('payroll/addinded', 'PayrollController::addIncomeDeduction'); // Administrator Routes $routes->get('adminuser', 'AdministratorController::index'); diff --git a/app/Controllers/PayrollController.php b/app/Controllers/PayrollController.php index b343ae0..3bb9f6d 100644 --- a/app/Controllers/PayrollController.php +++ b/app/Controllers/PayrollController.php @@ -7,10 +7,12 @@ use CodeIgniter\HTTP\ResponseInterface; // Models use App\Models\PayrollGroupModel; +use App\Models\IncomeDeductionModel; // Entities use App\Entities\PayrollGroup; +use App\Entities\IncomeDeduction; // Class Library use App\ClassLib\MiscLib; @@ -36,7 +38,7 @@ class PayrollController extends BaseController { foreach($payGroups as $group) { - $payGroupHTMLTable->setHeading('Group ID', 'Group Name', 'Action'); + $payGroupHTMLTable->setHeading('ID', 'Group Name', 'Action'); $iconView = ''; @@ -65,14 +67,50 @@ class PayrollController extends BaseController return redirect()->to('/payroll/paygroup')->with('message', 'Payroll Group Added'); } - public function employeePayrollGroupAssignment() + public function incomeDeduction() { + $incomeDeductions = (new IncomeDeductionModel())->findAll(); - return view('payroll/empaygrpview'); + $inDedHTMLTable = new \CodeIgniter\View\Table(); + $inDedHTMLTable->setTemplate(MiscLib::adminLTETableTemplate()); + + if($incomeDeductions == null) + $data['tblIncomeDeduction'] = '
No income and deduction found.
'; + else + { + foreach($incomeDeductions as $incomeDeduction) + { + $inDedHTMLTable->setHeading('ID', 'Payslip Display', 'COA Code', 'Deduction Name', 'Income', 'Taxable', 'Include in Gross', 'Action'); + + $iconView = ''; + + $inDedHTMLTable->addRow($incomeDeduction->inded_id, $incomeDeduction->payslip_display, $incomeDeduction->coa_code, $incomeDeduction->income_deduction_name, ($incomeDeduction->is_income) ? 'Yes' : 'No', ($incomeDeduction->is_taxable) ? 'Yes' : 'No', ($incomeDeduction->include_in_gross) ? 'Yes' : 'No', $iconView); + } + + $data['tblIncomeDeduction'] = $inDedHTMLTable->generate(); + } + + return view('payroll/incomedeductionview', $data); } - public function addEmployeePayrollGroupAssignment() + public function addIncomeDeduction() { + $incomeDeduction = new IncomeDeduction(); + $incomeDeductionModel = new IncomeDeductionModel(); + + $rawData = $this->request->getPost(); + // Handle checkbox inputs + $rawData['is_income'] = isset($rawData['is_income']) ? 1 : 0; // Set to 1 if checked, 0 if not + $rawData['is_taxable'] = isset($rawData['is_taxable']) ? 1 : 0; // Same for taxable + $rawData['include_in_gross'] = isset($rawData['include_in_gross']) ? 1 : 0; // Same for include in gross + + $incomeDeduction->fill($rawData); + $incomeDeductionModel->save($incomeDeduction); + + if($incomeDeductionModel->getInsertID() == 0) + return redirect()->back()->withInput()->with('error', 'Failed to add income or deduction'); + else + return redirect()->to('/payroll/inded')->with('message', 'Income or Deduction Added'); } } diff --git a/app/Database/Migrations/2024-09-12-093003_CreateIncomeDeduction.php b/app/Database/Migrations/2024-09-12-093003_CreateIncomeDeduction.php new file mode 100644 index 0000000..265b031 --- /dev/null +++ b/app/Database/Migrations/2024-09-12-093003_CreateIncomeDeduction.php @@ -0,0 +1,82 @@ +forge->addField([ + 'inded_id' => [ + 'type' => 'INT', + 'constraint' => 11, + 'unsigned' => true, + 'auto_increment' => true + ], + 'payslip_display' => [ + 'type' => 'VARCHAR', + 'constraint' => 25, + 'null' => false + ], + 'inded_name' => [ + 'type' => 'VARCHAR', + 'constraint' => 255, + 'null' => false + ], + 'coa_code' => [ + 'type' => 'VARCHAR', + 'constraint' => 25, + 'null' => true, + ], + 'is_income' => [ + 'type' => 'TINYINT', + 'constraint' => 1, + 'null' => false + ], + 'is_taxable' => [ + 'type' => 'TINYINT', + 'constraint' => 1, + 'null' => false + ], + 'include_in_gross' => [ + 'type' => 'TINYINT', + 'constraint' => 1, + 'null' => false + ], + + // Common fields + 'created_at' => [ + 'type' => 'DATETIME', + 'null' => true, + ], + 'created_by' => [ + 'type' => 'VARCHAR', + 'constraint' => '20', + 'null' => true + ], + 'updated_at' => [ + 'type' => 'DATETIME', + 'null' => true, + ], + 'updated_by' => [ + 'type' => 'VARCHAR', + 'constraint' => '20', + 'null' => true + ], + 'deleted_at' => [ + 'type' => 'DATETIME', + 'null' => true, + ], + ]); + + $this->forge->addKey('inded_id', true); + $this->forge->createTable('pay_income_deduction'); + } + + public function down() + { + $this->forge->dropTable('pay_income_deduction'); + } +} diff --git a/app/Entities/IncomeDeduction.php b/app/Entities/IncomeDeduction.php new file mode 100644 index 0000000..0ca26e8 --- /dev/null +++ b/app/Entities/IncomeDeduction.php @@ -0,0 +1,21 @@ + null, + 'payslip_display' => null, + 'inded_name' => null, + 'coa_code' => null, + 'is_income' => null, + 'is_taxable' => null, + 'include_in_gross' => null, + ]; + protected $datamap = []; + protected $dates = ['created_at', 'updated_at', 'deleted_at']; + protected $casts = []; +} diff --git a/app/Models/IncomeDeductionModel.php b/app/Models/IncomeDeductionModel.php new file mode 100644 index 0000000..c876ba1 --- /dev/null +++ b/app/Models/IncomeDeductionModel.php @@ -0,0 +1,62 @@ +user()->employee_id; + return $data; + } + + public function assignUpdatedAt(array $data) + { + $data['data']['updated_at'] = date('Y-m-d H:i:s'); + $data['data']['updated_by'] = auth()->user()->employee_id; + return $data; + } +} diff --git a/app/Views/payroll/incomedeductionview.php b/app/Views/payroll/incomedeductionview.php new file mode 100644 index 0000000..6731e87 --- /dev/null +++ b/app/Views/payroll/incomedeductionview.php @@ -0,0 +1,129 @@ + += $this->extend('templates/adminlte/generalcontent') ?> + + + += $this->section('title') ?>Income and Deduction= $this->endSection() ?> + + + += $this->section('css') ?> += $this->endSection() ?> + + + += $this->section('bodyclass') ?>sidebar-mini= $this->endSection() ?> + + + += $this->section('containertitle') ?>Income and Deduction= $this->endSection() ?> + + + += $this->section('activebreadcrumb') ?>Income and Deduction= $this->endSection() ?> + + + += $this->section('main') ?> + + +- Payroll Group + References & Settings +
+- EmpPay Assignment - 2 + Payroll Preparation +
+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":"1726050338<\/pre>","csrf_test_name":"f273684f893609c3062f37362d835631","_ci_previous_url":"http:\/\/localhost:8080\/hr\/branch","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>","message":"Branch Added ","__ci_vars":"Array\n(\n [message] => new\n)\n<\/pre>"},"post":{"company_id":"1","branch_code":"KWSMB","branch_name":"Karat World SM City Bacolod","address":"Bacolod City","contact_number":"","email_address":""},"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":"122","Origin":"http:\/\/localhost:8080","Connection":"keep-alive","Referer":"http:\/\/localhost:8080\/hr\/branch","Cookie":"debug-bar-state=open; ci_session=qjvfntdp13mrhlq7em99nbkhgr7bet2l","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":"qjvfntdp13mrhlq7em99nbkhgr7bet2l"},"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\/branch"}}},"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_1726050393.844907.json b/writable/debugbar/debugbar_1726050393.844907.json deleted file mode 100644 index 61b5af7..0000000 --- a/writable/debugbar/debugbar_1726050393.844907.json +++ /dev/null @@ -1 +0,0 @@ -{"url":"http:\/\/localhost:8080\/hr\/branch","method":"GET","isAJAX":false,"startTime":1726050393.750898,"totalTime":84.1,"totalMemory":"6.796","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":1726050393.760601,"duration":0.016241073608398438},{"name":"Routing","component":"Timer","start":1726050393.776844,"duration":3.600120544433594e-5},{"name":"Before Filters","component":"Timer","start":1726050393.777981,"duration":0.05186796188354492},{"name":"Controller","component":"Timer","start":1726050393.829852,"duration":0.005071878433227539},{"name":"Controller Constructor","component":"Timer","start":1726050393.829853,"duration":0.0008249282836914062},{"name":"After Filters","component":"Timer","start":1726050393.834959,"duration":0.00021600723266601562}]},{"title":"Database","titleSafe":"database","titleDetails":"(5 total Queries, 5 of them unique across 1 Connection)","display":{"queries":[{"hover":"","class":"","duration":"0.72 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":"fa2cf47f27139fc5189338b43b2303b5"},{"hover":"","class":"","duration":"1.01 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":"89c23ec7194f1bf94bf2d9a2757ff6fb"},{"hover":"","class":"","duration":"0.65 ms","sql":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-11 10:26:33'\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":"8f55bea1edf99dbb75c64f2f4bcef97d"},{"hover":"","class":"","duration":"0.57 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:82","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->companyBranch()","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:82","qid":"a90e6fedd40c7a3b424b72a7b62ece30"},{"hover":"","class":"","duration":"0.74 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:103","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->companyBranch()","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":"4d69c523d23415497dc76312b309c500"}]},"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":1726050393.794608,"duration":"0.024269"},{"name":"Query","component":"Database","start":1726050393.819517,"duration":"0.000718","query":"SELECT<\/strong> *\nFROM<\/strong> `settings`\nWHERE<\/strong> `context` IS<\/strong> NULL<\/strong>"},{"name":"Query","component":"Database","start":1726050393.825617,"duration":"0.001013","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":1726050393.829148,"duration":"0.000653","query":"UPDATE<\/strong> `users` SET `last_active` = '2024-09-11 10:26:33'\nWHERE<\/strong> `id` = 1"},{"name":"Query","component":"Database","start":1726050393.830934,"duration":"0.000573","query":"SELECT<\/strong> *\nFROM<\/strong> `company_branch`"},{"name":"Query","component":"Database","start":1726050393.833626,"duration":"0.000737","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":1726050393.832896,"duration":0.0018839836120605469},{"name":"View: hr\/branchview.php","component":"Views","start":1726050393.832469,"duration":0.002382993698120117}]},{"title":"Files","titleSafe":"files","titleDetails":"( 198 )","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\\ClassLib\\MiscLib.php","name":"MiscLib.php"},{"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\\CompanyInfo.php","name":"CompanyInfo.php"},{"path":"APPPATH\\Models\\CompanyBranchModel.php","name":"CompanyBranchModel.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\\branchview.php","name":"branchview.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":198,"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":"companyBranch","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\/paygroup","handler":"\\App\\Controllers\\PayrollController::payrollGroup"},{"method":"GET","route":"payroll\/emppaygrpassign","handler":"\\App\\Controllers\\PayrollController::employeePayrollGroupAssignment"},{"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\/addpaygroup","handler":"\\App\\Controllers\\PayrollController::addPayrollGroup"},{"method":"POST","route":"payroll\/addemppaygrpassign","handler":"\\App\\Controllers\\PayrollController::addEmployeePayrollGroupAssignment"},{"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":23,"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.59","count":1},"dbquery":{"event":"dbquery","duration":"0.10","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":1726050393.767971,"duration":0.006588935852050781},{"name":"Event: dbquery","component":"Events","start":1726050393.82024,"duration":2.9087066650390625e-5},{"name":"Event: dbquery","component":"Events","start":1726050393.826635,"duration":2.6226043701171875e-5},{"name":"Event: dbquery","component":"Events","start":1726050393.829804,"duration":1.5974044799804688e-5},{"name":"Event: dbquery","component":"Events","start":1726050393.831509,"duration":1.2874603271484375e-5},{"name":"Event: dbquery","component":"Events","start":1726050393.834366,"duration":1.5020370483398438e-5}]},{"title":"Auth","titleSafe":"auth","titleDetails":"1.0.3 | CodeIgniter\\Shield\\Authentication\\Authenticators\\Session","display":" |