@extends('layouts.app') @section('title', trans('menu.team_members_title')) @section('content') @php $user = auth()->user(); @endphp
{{trans('menu.export')}}
@if ($user->can('view deactivated profile employee'))
@endif
{{__('forms.filter_by_location')}}
@foreach ($locations as $key => $value)
id , $location_id) ? "checked" : "" }} type="checkbox" value="{{$value->id}}"> {{$value->name}}
@endforeach
{{__('forms.filter_by_department')}}
@foreach ($departments as $key => $value)
id , $department_id) ? "checked" : "" }} name="department[]" type="checkbox" value="{{$value->id}}"> {{$value->name}}
@endforeach
{{__('forms.filter_by_postion')}}
@foreach ($positions as $key => $value)
id , $position_id) ? "checked" : "" }} name="position[]" type="checkbox" value="{{$value->id}}"> {{$value->name}}
@endforeach
{{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @if($user->hasAnyPermission(['edit users', 'delete users'])) --}} {{-- @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")}}{{trans("tables.action_title")}}
@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