after a series of bug fixes plus Non MNO logic for Sender IDs, unfinished leave management and holiday modules
This commit is contained in:
@@ -23,8 +23,20 @@
|
||||
@foreach ($client_sender_ids as $row)
|
||||
<tr class="even pointer">
|
||||
<td class="mes-td col-md-2">{{ $row->senderid }} </td>
|
||||
<td class="col-md-2">{{ $row->network_info->name }}</td>
|
||||
<td class="col-md-2">{{ $row->network_info->country }}</td>
|
||||
<td class="col-md-2">
|
||||
<?php
|
||||
if(isset($row->network_info->name)){
|
||||
echo $row->network_info->name;
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td class="col-md-2">
|
||||
<?php
|
||||
if(isset($row->network_info->country)){
|
||||
echo $row->network_info->country;
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td class="col-md-1"><span class="label label-<?php echo ($row->status == 'Approved') ? 'success' : 'warning'; ?>"> {{ $row->status }}</span></td>
|
||||
<td class="col-md-2">{{ $row->created_by_info->name }}</td>
|
||||
<td class="mes-td col-md-2" style="width: 100px;">{{ $row->remarks }}</td>
|
||||
|
||||
Reference in New Issue
Block a user