@extends('layouts.user_type.auth') @section('companyProfile.employee')
@include('components.alert')

{{ $company_name ?? 'Config Settings' }}

Admin Contact

@forelse($employees as $index => $employee) @empty @endforelse
No Name Email Contact No

{{ $employees->firstItem() + $index }}

{{ $employee->name }}

{{ $employee->email }}

{{ $employee->contact_no }}

No employees found.
@include('components.pagination', ['paginator' => $employees])
@endsection