@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')
Job Levels
{{--
--}}
@can('job_levels.create')
@endcan
@include('partials.new_alerts')
{{-- |
| --}}
Job Level |
No of Employees |
Status |
Actions |
@foreach ($jobLevels as $jobLevel)
{{-- |
| --}}
{{ $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
|
@endforeach
@endcan
@endsection