PluginProbe
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce / 1.3.13
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce v1.3.13
1.17.9 1.17.8 1.17.7 1.17.6 1.17.5 1.17.4 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.3.0 1.3.1 1.3.11 1.3.12 1.3.13 1.3.14 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 All 143 releases
erp / modules / hrm / includes / models / Department.php

Department.php in ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce 1.3.13, at modules/hrm/includes/models/Department.php

20 lines 458 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace WeDevs\ERP\HRM\Models;
3
4 use WeDevs\ERP\Framework\Model;
5
6 /**
7 * Class Department
8 *
9 * @package WeDevs\ERP\HRM\Models
10 */
11 class Department extends Model {
12 protected $primaryKey = 'id';
13 protected $table = 'erp_hr_depts';
14 protected $fillable = [ 'title', 'description', 'lead', 'parent', 'status' ];
15
16 // public function employees(){
17 // return $this->hasMany( 'WeDevs\ERP\HRM\Models\Employee', 'department', 'id' );
18 // }
19 }
20