@extends('layouts.app')
@section('title', trans('title.users'))
@section('content')
@php $user = request()->user(); @endphp
@can('create', App\User::class)
{{trans('forms.lbl_add_new')}}
@endcan
{{__('forms.deleted_user_list')}}
{{trans('menu.export')}}
{{trans('menu.send_as_email')}}
@include('users.filter')
{{-- @if($user->can('create', App\User::class))
|
@endif --}}
{{trans("tables.name_title")}} |
{{-- {{trans("tables.emp_id_title")}} | --}}
{{trans("tables.joining_date_title")}} |
{{trans("tables.ending_date_title")}} |
{{trans("tables.department_title")}} |
{{trans("tables.status_title")}} |
@if($user->hasAnyPermission(['edit users', 'delete users']))
{{trans("tables.action_title")}} |
@endif
@include('layouts.partials.excelModal')
@include('layouts.partials.excelModalSendEmail')
@endsection
@section('footer-script')
@stop