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 / accounting / includes / models / chart-classes.php

chart-classes.php in ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce 1.3.13, at modules/accounting/includes/models/chart-classes.php

14 lines 365 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace WeDevs\ERP\Accounting\Model;
3
4 use WeDevs\ERP\Framework\Model;
5
6 class Chart_Classes extends Model {
7 protected $primaryKey = 'id';
8 protected $table = 'erp_ac_chart_classes';
9 protected $fillable = [ 'name'];
10
11 public function types() {
12 return $this->hasMany( 'WeDevs\ERP\Accounting\Model\Chart_Type', 'class_id' );
13 }
14 }