Files
numstation-web/resources/views/themes/tailwind/cms/companies/show-log.blade.php

17 lines
704 B
PHP
Raw Normal View History

2023-12-22 12:35:55 +08:00
<div class="tabs-content-item">
<div class="main-comsec-library">
<table id="allUserAccessLogsListTable" class="" data-ajax-url="{{ route("cms.companies.show.access-logs-table", $company->id) }}" data-empty-text="{{ __("No data available in table") }}">
<thead>
<tr>
<td>{{ __("User email") }}</td>
<td>{{ __("Date") }}</td>
<td>{{ __("Time") }}</td>
<td>{{ __("Event") }}</td>
<td>{{ __("Description") }}</td>
<td>{{ __("Status") }}</td>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>