Files
click-erp/resources/views/client/partials/client-ussd-codes.blade.php
2023-04-17 20:25:52 +00:00

48 lines
2.8 KiB
PHP

<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">Last Updated By</th>
<th class="column-title no-link last"><span class="nobr">Action</span>
</th>
</tr>
</thead>
<tbody>
@if ($ussd_codes->isEmpty())
<tr>
<td class="" colspan="12">No Records found</td>
</tr>
@else
@foreach ($ussd_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>