multiple bug fixes including sender ID filtering
This commit is contained in:
@@ -249,7 +249,8 @@
|
||||
<table class="table table-striped table-bordered table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col active">Service</th>
|
||||
<th scope="col active">Service/System ID</th>
|
||||
<th scope="col active">System ID</th>
|
||||
<th scope="col success">IP</th>
|
||||
<th scope="col warning">Port</th>
|
||||
<th scope="col info">Status</th>
|
||||
@@ -258,6 +259,7 @@
|
||||
@foreach($ip_addresses as $row)
|
||||
<tr>
|
||||
<td class="">{{ $row->service }}</td>
|
||||
<td class="">{{ $row->system_id }}</td>
|
||||
<td class="">{{ $row->ip_address }}</td>
|
||||
<td class="">{{ $row->port }}</td>
|
||||
<td class="">{{ $row->status }}</td>
|
||||
|
||||
@@ -22,8 +22,14 @@
|
||||
</div>
|
||||
<div class="form-group" >
|
||||
<div class="col-md-12" style="padding-bottom: 5px;">
|
||||
<label for="ip">IP Address *</label>
|
||||
<input type="text" class="form-control" name="ip_address" id="invoiceNumber" required >
|
||||
<label for="systemID">SMPP System ID</label>
|
||||
<input type="text" class="form-control" name="system_id" id="systemID" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" >
|
||||
<div class="col-md-12" style="padding-bottom: 5px;">
|
||||
<label for="ipAddress">IP Address *</label>
|
||||
<input type="text" class="form-control" name="ip_address" id="ipAddress" required >
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" >
|
||||
|
||||
@@ -265,6 +265,7 @@
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">IP Address</th>
|
||||
<th scope="col">SMPP System ID</th>
|
||||
<th scope="col">Port</th>
|
||||
<th scope="col">Status</th>
|
||||
<th scope="col">Added By</th>
|
||||
@@ -280,6 +281,7 @@
|
||||
<tr>
|
||||
<th scope="row">{{ $count }}</th>
|
||||
<td>{{ $row->ip_address }}</td>
|
||||
<td>{{ $row->system_id }}</td>
|
||||
<td>{{ $row->port }}</td>
|
||||
<td>{{ $row->status }}</td>
|
||||
<td>{{ $row->created_by_info->name }}</td>
|
||||
@@ -334,3 +336,6 @@
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user