@extends('layouts.app',['path'=>'job/level']) @section('title', 'Job Levels - HRMS') @section('content') @can('job_levels.read|job_levels.create|job_levels.update|job_levels.delete')
@include('partials.new_alerts')
{{-- --}} @foreach ($jobLevels as $jobLevel) {{-- --}} @endforeach
Job Level No of Employees Status Actions
{{ $jobLevel['name'] }}
{{ $jobLevel['distinct_employee_count'] }} @if($jobLevel['status'] ) Active @else Inactive @endif
@can('job_levels.update') @endcan @can('job_levels.delete') @endcan @can('logs.read') @endcan
@endcan @endsection