@extends('admin.admin-layouts.master') @section('content')

{{ $title }}

@foreach ($employees as $employee) @endforeach
{{ __('User ID') }} {{ __('Image') }} {{ __('Name') }} {{ __('Department') }} {{ __('Designation') }} {{ __('Email') }} {{ __('Status') }} {{ __('Action') }}
{{ $loop->iteration }} employee {{ $employee->name }} {{ $employee->emp_info->department }} {{ $employee->emp_info->designation }} {{ $employee->email }} @if ($employee->status) {{ __('Active') }} @else {{ __('Deactive') }} @endif
@if ($employee->role != 'admin') @endif
@endsection @push('style') @endpush @push('script') @endpush