Welcome Guest, Not a member yet? Register   Sign In
BUG model common function
#3

PHP Code:
Crud.php
<?php namespace BAPI\Models\GI;

class Crud extends \CodeIgniter\Model
{
  protected $table = 'gitem';
  protected $primaryKey = 'id';
  protected $returnType = 'array';
  protected $dateFormat = 'date';

  protected $useSoftDeletes = true;
  protected $useTimestamps = true;

Crud.php
<?php namespace BAPI\Models\GG;

class Crud extends \CodeIgniter\Model
{
  protected $table = 'ggroup';
  protected $primaryKey = 'id';
  protected $returnType = 'array';
  protected $dateFormat = 'date';

  protected $useSoftDeletes = true;
  protected $useTimestamps = true
Reply


Messages In This Thread
BUG model common function - by cukikt0302 - 05-12-2020, 09:41 AM
RE: BUG model common function - by jreklund - 05-12-2020, 10:44 AM
RE: BUG model common function - by cukikt0302 - 05-12-2020, 11:33 AM
RE: BUG model common function - by cukikt0302 - 05-12-2020, 11:38 AM
RE: BUG model common function - by jreklund - 05-12-2020, 11:39 AM
RE: BUG model common function - by cukikt0302 - 05-12-2020, 11:43 AM
RE: BUG model common function - by jreklund - 05-12-2020, 11:46 AM
RE: BUG model common function - by cukikt0302 - 05-12-2020, 11:56 AM
RE: BUG model common function - by jreklund - 05-12-2020, 01:10 PM
RE: BUG model common function - by cukikt0302 - 05-12-2020, 10:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB