@extends('layouts.app',['path'=>'department'])
@section('title', 'Departments - HRMS')
@section('content')
@can('departments.read|departments.create|departments.update|departments.delete')
Departments
{{--
--}}
@can('departments.create')
@endcan
@include('partials.new_alerts')
{{-- |
| --}}
Department |
Department Code |
No of Employees |
Status |
Actions |
@foreach ($departments as $department)
{{-- |
| --}}
|
{{ $department['code'] }} |
{{ $department['distinct_employee_count'] }} |
@if($department['status'] )
Active
@else
Inactive
@endif
|
@can('departments.update')
@endcan
@can('departments.delete')
@endcan
@can('logs.read')
@endcan
|
@endforeach
@endcan
@endsection