45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<div>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
<thead>
|
|
<tr class="headings">
|
|
<th class="column-title">Services</th>
|
|
<th class="column-title">Invoice Number</th>
|
|
<th class="column-title">Invoice Date</th>
|
|
<th class="column-title">Recurring</th>
|
|
<th class="column-title">Status</th>
|
|
<th class="column-title">Remarks</th>
|
|
<th class="column-title no-link last"><span class="nobr">Action</span>
|
|
</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if ($support_fees->isEmpty())
|
|
<tr>
|
|
<td class="" colspan="12">No Records found</td>
|
|
</tr>
|
|
@else
|
|
@foreach ($support_fees as $row)
|
|
<tr class="even pointer">
|
|
<td class="mes-td col-md-3">{{ $row->services }} </td>
|
|
<td class="mes-td col-md-1">{{ $row->invoice_number }}</td>
|
|
<td class="mes-td col-md-2">{{ date('d-m-Y', strtotime($row->invoice_date)) }}</td>
|
|
<td class="mes-td col-md-1">{{ $row->recurring }}</td>
|
|
<td class="mes-td col-md-1"><span class="label label-<?php echo ($row->status == 'SENT') ? 'success' : 'danger'; ?>"> {{ $row->status }}</span></td>
|
|
|
|
<td class="mes-td col-md-3" style="width: 100px;">{{ $row->remarks }}</td>
|
|
<td class="last col-md-1" style="width: 100px;">
|
|
<span>
|
|
<input type="hidden" name="support_entry_id" value="{{ $row->id }}" class="supportEntryRowId">
|
|
<a href="" class="btn btn-xs btn-primary supportEntryEditBtn"><i class="fa fa-edit"></i></a>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
@endif
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|