@extends('layouts.app') @section('title', 'Kit Service | add_new_employee') @section('content')

Total employees

@php $countEmployees = DB::table('employees')->count(); $count = $countEmployees; @endphp {{ $count ?? 0 }}

@foreach($employees as $employee) @endforeach
Full Name Department Function Echelon Niveau Action
{{ $employee->department }} {{ $employee->function }} {{ $employee->echelon ?? 'N/A' }} {{ $employee->niveau ?? 'N/A' }}
{{-- payroll --}}
@endsection