You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwpayroll/app/Entities/PayrollTransaction.php

25 lines
573 B
PHP

<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class PayrollTransaction extends Entity
{
protected $attributes = [
'paytrans_id' => null,
'paytype_id' => null,
'payschedule_id' => null,
'payroll_from' => null,
'payroll_to' => null,
'no_of_days' => null,
'total_emp' => null,
'total_gross' => null,
'remarks' => null,
'is_open' => null,
];
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
}