Files
kulakpos_web/Modules/Business/resources/views/commissions/datas.blade.php

74 lines
2.7 KiB
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<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>{{ __('Grade') }}</th>
<th>{{ __('Commission ') }}</th>
<th>{{ __('Sales Target') }}</th>
<th>{{ __('Status') }}</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>{{__('A') }}</td>
<td>{{__('10%') }}</td>
<td>{{__('100,00,0000') }}</td>
<td>
<label class="switch m-0">
<input type="checkbox" name="allow_multibranch" class="change-text">
<span class="slider round"></span>
</label>
</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>