@extends('layouts.app',['path'=>'employee/type'])
@section('title', 'Employment Types - HRMS')
@section('content')
@can('employment_types.read|employment_types.create|employment_types.update|employment_types.delete')
Employment Types
{{--
--}}
@can('employment_types.create')
@endcan
{{--
--}}
@include('partials.new_alerts')
{{-- |
| --}}
Employment Type |
Employment Code |
No of Employee |
Status |
Actions |
@foreach ($employeeTypes as $employeeType)
{{-- |
| --}}
{{ $employeeType['name'] }} |
{{ $employeeType['code'] }} |
{{ $employeeType['employees_count'] }} |
@if($employeeType['status'] )
Active
@else
Inactive
@endif
|
@can('employment_types.update')
@endcan
@can('employment_types.delete')
@endcan
@can('logs.read')
@endcan
|
@endforeach
@endcan
@endsection