| Line 25... |
Line 25... |
| 25 |
<th>Actions</th>
|
25 |
<th>Actions</th>
|
| 26 |
</tr>
|
26 |
</tr>
|
| 27 |
|
27 |
|
| 28 |
<?php foreach ($result as $rkey =>$rval):?>
|
28 |
<?php foreach ($result as $rkey =>$rval):?>
|
| 29 |
<tr>
|
29 |
<tr>
|
| 30 |
<td><?php echo $rval['u']['name'];?></td>
|
30 |
<td><?php echo $rval['u']['first_name'].' '.$rval['u']['last_name'];?></td>
|
| 31 |
<td><?php echo $rval['u']['email'];?></td>
|
31 |
<td><?php echo $rval['u']['email'];?></td>
|
| 32 |
<td><?php echo $rval['u']['mobile_number'];?></td>
|
32 |
<td><?php echo $rval['u']['mobile_number'];?></td>
|
| 33 |
<td><?php echo $rval['r']['name'];?></td>
|
33 |
<td><?php echo $rval['r']['name'];?></td>
|
| 34 |
<td><?php echo $rval['r']['type'];?></td>
|
34 |
<td><?php echo $rval['r']['type'];?></td>
|
| 35 |
<td><?php echo $rval['r']['number'];?></td>
|
35 |
<td><?php echo $rval['r']['number'];?></td>
|
| 36 |
<td><?php echo $rval['r']['created'];?></td>
|
36 |
<td><?php echo $rval['r']['created'];?></td>
|
| 37 |
<td><button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#myModal"> Launch demo modal</button>
|
37 |
<td><button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#myModal">View Details</button>
|
| 38 |
</tr>
|
38 |
</tr>
|
| 39 |
<?php endforeach;?>
|
39 |
<?php endforeach;?>
|
| 40 |
|
40 |
|
| 41 |
</table>
|
41 |
</table>
|
| 42 |
</div>
|
42 |
</div>
|
| Line 49... |
Line 49... |
| 49 |
<div class="modal-header">
|
49 |
<div class="modal-header">
|
| 50 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
50 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
| 51 |
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
|
51 |
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
|
| 52 |
</div>
|
52 |
</div>
|
| 53 |
<div class="modal-body">
|
53 |
<div class="modal-body">
|
| 54 |
...
|
54 |
<input type="text" name="
|
| 55 |
</div>
|
55 |
</div>
|
| 56 |
<div class="modal-footer">
|
56 |
<div class="modal-footer">
|
| 57 |
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
|
57 |
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
|
| 58 |
<button type="button" class="btn btn-sm btn-primary">Save changes</button>
|
58 |
<button type="button" class="btn btn-sm btn-primary">Save changes</button>
|
| 59 |
</div>
|
59 |
</div>
|