@extends('layouts.admin.app') @section('title', translate('Employee List')) @push('css_or_js') @endpush @section('content')

{{translate('employee_List')}}

{{translate('employee_table')}} {{$em->total()}}
@foreach($em as $k=>$e) @if($e->role) @endif @endforeach
{{translate('SL')}} {{translate('Name')}} {{translate('Contact_Info')}} {{translate('Role')}} {{translate('Status')}} {{translate('action')}}
{{$em->firstitem()+$k}}
{{$e['f_name'] . ' ' . $e['l_name']}}
{{$e->role['name']}}
@csrf @method('DELETE')
{{$em->links()}}
@endsection @push('script') @endpush