From 5b01cdae83de9f4b95abd8a5dd113c1e0f526c1a Mon Sep 17 00:00:00 2001 From: Gowtham M Date: Mon, 13 Oct 2025 16:59:00 +0530 Subject: [PATCH] Login logout handled : GWM --- app/Models/StaffAttendanceModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/StaffAttendanceModel.php b/app/Models/StaffAttendanceModel.php index eea9c71..efd14f1 100644 --- a/app/Models/StaffAttendanceModel.php +++ b/app/Models/StaffAttendanceModel.php @@ -4,7 +4,7 @@ use CodeIgniter\Model; class StaffAttendanceModel extends Model { - protected $table = 'staff_attendance'; + protected $table = 'partner_staff_attendance'; protected $primaryKey = 'id'; protected $returnType = 'array'; protected $allowedFields = ['staff_id', 'login_datetime', 'logout_datetime'];