@extends('layouts.adminapp') @section('title') {{ __('lng.Employee') }} @endsection @section('active_payroll', 'active') @section('open_payroll', 'open') @section('active_employee', 'active') @section('content')

{{ __('lng.Employee') }}

{{ __('lng.EmployeeTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Employees as $Employee) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.Photo') }} {{ __('lng.Designation') }} {{ __('lng.Mobile') }} {{ __('lng.Email') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Employee->name }} {{ $Employee->designation->title }} {{ $Employee->mobile }} {{ $Employee->email }}
{{--
--}}
@csrf @method('delete')
{{--
--}}

{{ __('lng.Showing') }} {{ $Employees->count() }} {{ __('lng.Items') }}

@endif
@endsection