@extends('admin.layout.master') @section('content') @include('flash-message')
{{__('obs.employee_docs_group')}}
@if (!empty($allempdocs)) @php($i = 1) @foreach ($allempdocs as $item) @endforeach @else @endif
{{__('obs.id')}} {{__('obs.group_name')}} {{__('obs.status')}} {{__('obs.is_show_in_employee_dashboard')}}? {{__('obs.action')}}
{{ $i++ }} {{ $item->name }} @if ($item->status == 1) {{'Active'}} @else {{'InActive'}} @endif @if ($item->is_show == 1) {{'Yes'}} @elseif($item->is_show==2) {{'No'}} @else {{'No data found'}} @endif
{{__('obs.data_not_found')}}
@include('payroll.admin.settings.empdocs.form.add_empdocs') @endsection