12 lines
316 B
PHP
12 lines
316 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class StaffAttendanceModel extends Model
|
|
{
|
|
protected $table = 'partner_staff_attendance';
|
|
protected $primaryKey = 'id';
|
|
protected $returnType = 'array';
|
|
protected $allowedFields = ['staff_id', 'login_datetime', 'logout_datetime', 'manager_id'];
|
|
}
|