Preview: AdminModel.php
Size: 527 B
/home/ecopackply/www/app/Models/AdminModel.php
<?php
namespace App\Models;
use CodeIgniter\Model;
class AdminModel extends Model
{
protected $table = 'tbl_admin';
protected $primaryKey = 'id';
protected $allowedFields = [
'username',
'password'
];
public function getAdmin()
{
return $this->where('username', 'admin')->first();
}
public function changePassword($data)
{
return $this->where('username', 'admin')
->set($data)
->update();
}
}
Directory Contents
Dirs: 0 × Files: 5