Files
kulakpos_web/Modules/HrmAddon/resources/views/employees/view.blade.php
eko54r 3e1b64e008
Some checks failed
Build, Push and Deploy / build-and-push (push) Failing after 3m30s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 15s
Build, Push and Deploy / deploy-staging (push) Has been skipped
Build, Push and Deploy / deploy-production (push) Has been skipped
update addon HRM
2026-05-04 23:04:09 +07:00

82 lines
3.4 KiB
PHP

<div class="modal fade p-0" id="employees-view">
<div class="modal-dialog modal-dialog-centered modal-md">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5">{{ __('View') }}</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body order-form-section">
<table class="info-table">
<tbody>
<tr>
<td>{{ __('Image') }}</td>
<td>:</td>
<td><img class="table-img" src="" alt="" id="employees_image"></td>
</tr>
<tr>
<td>{{ __('Name') }}</td>
<td>:</td>
<td id="employees_name"></td>
</tr>
<tr>
<td>{{ __('Gender') }}</td>
<td>:</td>
<td id="employees_gender"></td>
</tr>
<tr>
<td>{{ __('Phone') }}</td>
<td>:</td>
<td id="employees_phone"></td>
</tr>
<tr>
<td>{{ __('Salary') }}</td>
<td>:</td>
<td id="employees_amount"></td>
</tr>
<tr>
<td>{{ __('Email') }}</td>
<td>:</td>
<td id="employees_email"></td>
</tr>
<tr>
<td>{{ __('Country') }}</td>
<td>:</td>
<td id="employees_country"></td>
</tr>
<tr>
<td>{{ __('Birth Date') }}</td>
<td>:</td>
<td id="employees_birth_date"></td>
</tr>
<tr>
<td>{{ __('Join Date') }}</td>
<td>:</td>
<td id="employees_join_date"></td>
</tr>
<tr>
<td>{{ __('Designation') }}</td>
<td>:</td>
<td id="employees_designation"></td>
</tr>
<tr>
<td>{{ __('Department') }}</td>
<td>:</td>
<td id="employees_department"></td>
</tr>
<tr>
<td>{{ __('Shift') }}</td>
<td>:</td>
<td id="employees_shift"></td>
</tr>
<tr>
<td>{{ __('Status') }}</td>
<td>:</td>
<td id="employees_status"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>