clients profile,slack, new email, bug fixes
This commit is contained in:
49
resources/views/client/partials/client-voice-codes.blade.php
Normal file
49
resources/views/client/partials/client-voice-codes.blade.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped ">
|
||||
<thead>
|
||||
<tr class="headings">
|
||||
{{-- <th>#</th> --}}
|
||||
<th class="column-title">Name</th>
|
||||
<th class="column-title">Code</th>
|
||||
<th class="column-title">Network/Country</th>
|
||||
<th class="column-title">Client</th>
|
||||
<th class="column-title">Toll Free</th>
|
||||
<th class="column-title">Status</th>
|
||||
<th class="column-title">Launch Date</th>
|
||||
<th class="column-title">Account Manager</th>
|
||||
<th class="column-title">Last Updated By</th>
|
||||
<th class="column-title no-link last"><span class="nobr">Action</span>
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if ($voice_codes->isEmpty())
|
||||
<tr>
|
||||
<td class="" colspan="12">No Records found</td>
|
||||
</tr>
|
||||
@else
|
||||
@foreach ($voice_codes as $row)
|
||||
<tr class="even pointer">
|
||||
<td class="mes-td">{{ $row->name }}</td>
|
||||
<td class="mes-td">{{ $row->shortcode }}</td>
|
||||
<td class="mes-td">{{ $row->network }}</td>
|
||||
<td class="mes-td">{{ $row->client_info->name }}</td>
|
||||
<td class="mes-td">{{ $row->toll_free }}</td>
|
||||
<td class="mes-td">{{ $row->status }}</td>
|
||||
<td class="mes-td" style="width: 100px;">{{ $row->launch_date }}</td>
|
||||
<td class="mes-td"><?php echo $row->update_info->name ?? 'N/A'; ?></td>
|
||||
<td class="last" style="width: 100px;">
|
||||
<span>
|
||||
<a href="" class="btn btn-xs btn-primary"><i class="fa fa-edit"></i></a>
|
||||
<a title="" data-val="{{ $row->id }}" class="btn btn-xs btn-danger removeCode"><i class="fa fa-trash"></i></a>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endif
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user