Commit 4382e5e5 by Jansa Jose

doctor feedback admin panel

parent 483b05e4
...@@ -49,11 +49,16 @@ ...@@ -49,11 +49,16 @@
<tr> <tr>
<td class="hidden"><?php echo $customer->id; ?></td> <td class="hidden"><?php echo $customer->id; ?></td>
<td><?php echo $customer->name; ?></td> <td><?php echo $customer->name; ?></td>
<?php <td><?php if($customer->feedback_type == 0){
$feedata = str_replace('[', '', $customer->feedback_type); echo "Problemas Atendimento";
$feedata = str_replace(']', '', $feedata); }else if ($customer->feedback_type == 1) {
?> echo "Dificuldade para agendamento";
<td><?php echo $feedata; ?></td> }else if($customer->feedback_type == 2){
echo "Problemas Pagamento";
}else{
echo "Outros";
}
?></td>
<td><?php echo $customer->feedback_content; ?></td> <td><?php echo $customer->feedback_content; ?></td>
</tr> </tr>
<?php <?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