Commit 4382e5e5 by Jansa Jose

doctor feedback admin panel

parent 483b05e4
......@@ -49,11 +49,16 @@
<tr>
<td class="hidden"><?php echo $customer->id; ?></td>
<td><?php echo $customer->name; ?></td>
<?php
$feedata = str_replace('[', '', $customer->feedback_type);
$feedata = str_replace(']', '', $feedata);
?>
<td><?php echo $feedata; ?></td>
<td><?php if($customer->feedback_type == 0){
echo "Problemas Atendimento";
}else if ($customer->feedback_type == 1) {
echo "Dificuldade para agendamento";
}else if($customer->feedback_type == 2){
echo "Problemas Pagamento";
}else{
echo "Outros";
}
?></td>
<td><?php echo $customer->feedback_content; ?></td>
</tr>
<?php
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment