Files

76 lines
2.7 KiB
PHP

<div class="responsive-table m-0">
<table class="table" id="datatable">
<thead>
<tr>
@usercan('categories.delete')
<th class="w-60">
<div class="d-flex align-items-center gap-3">
<input type="checkbox" class="select-all-delete multi-delete">
</div>
</th>
@endusercan
<th>{{ __('SL') }}.</th>
<th>{{ __('Customer Name') }}</th>
<th>{{ __('Target Amount') }}</th>
<th>{{ __('Duration') }}</th>
<th>{{ __('Sales') }}</th>
<th>{{ __('Grade') }}</th>
<th>{{ __('Commission') }}</th>
<th>{{ __('Progress') }}</th>
<th>{{ __('Action') }}</th>
</tr>
</thead>
<tbody id="business-category-data">
<tr>
<td class="w-60 checkbox">
<input type="checkbox" name="ids[]" class="delete-checkbox-item multi-delete"
value="">
</td>
<td>1</td>
<td>Kristin Watson</td>
<td>$50,00,000</td>
<td>1 Month</td>
<td>
$49,70,750
</td>
<td>B</td>
<td>3%</td>
<td>95%</td>
<td>
<div class="dropdown table-action">
<button type="button" data-bs-toggle="dropdown">
<i class="far fa-ellipsis-v"></i>
</button>
<ul class="dropdown-menu">
<li>
<a href="#" data-bs-toggle="modal">
<i class="fal fa-eye"></i>
View
</a>
</li>
<li>
<a href="#">
<i class="fal fa-edit"></i>
Edit
</a>
</li>
<li>
<a href="#" class="confirm-action">
<i class="fal fa-trash-alt"></i>
Delete
</a>
</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-3">
</div>