@extends('layouts.app')
@section('title', trans('menu.team_members_title'))
@section('content')
@php $user = auth()->user(); @endphp
{{trans('menu.export')}}
{{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 --}}
@php
$users = App\User::where('status', 1)->get(['id', 'name', 'display_name'])->sortBy('display_name');
@endphp
@include('layouts.partials.excelModal')
@endsection
@section('footer-script')
@stop