Привет всем Я создаю веб-портал. Я хочу добавить отображение данных. Я использую плагин Datatable для этого, но я столкнулся с некоторой проблемой. Пожалуйста, помогите мне с этим.
Это мой код Contorller
public function fetchTeams() {
$data = $this->Teams_model->getAllTeams();
echo json_encode(array("data" => $data));
}
Мой HTML Просмотр
<div class="card-body">
<table id="teamDatatable" class="display table table-bordered table-hover" width="100%">
<thead>
<tr>
<th>Employee name</th>
<th>Email</th>
<th>Gender</th>
<th>Salary</th>
<th>City</th>
</tr>
</thead>
</table>
</div>
Моя модель
public function getAllTeams() {
$query = $this->db->get("teams");
return $query->result_array();
$query1 = $this->db->get('Teams');
$data1 = $query->num_rows();
$response = array(
"iTotalRecords" => $data1,
"aaData" => $data
);
return $response;
}
Мой взгляд
Мой взгляд
Нет записей