15 lines
565 B
PHP
15 lines
565 B
PHP
<?php
|
|
namespace App\Models;
|
|
use CodeIgniter\Model;
|
|
class BranchModel extends Model
|
|
{
|
|
protected $table = 'branches';
|
|
protected $primaryKey = 'branch_id';
|
|
protected $allowedFields = ['business_id','branch_id','branch_name','gstno','email','contact','address','city','state','country','pin_code','state_code','isactive'];
|
|
|
|
public function getBranchesByBusinessId($business_id)
|
|
{
|
|
// Query the database to retrieve branches associated with the provided business ID
|
|
return $this->where('business_id', $business_id)->findAll();
|
|
}
|
|
} |