@extends('layouts.app',['path'=>'office/location'])
@section('title', 'Office Locations - HRMS')
@section('content')
@can('office_locations.read|office_locations.update|office_locations.delete|office_locations.create')
Office Locations
{{--
--}}
@can('office_locations.create')
@endcan
@include('partials.new_alerts')
{{-- |
| --}}
Location |
Location Code |
No of Employees |
Status |
Actions |
@foreach ($officeLocations as $officeLocation)
{{-- |
| --}}
{{ $officeLocation['name'] }}
|
{{ $officeLocation['code'] }} |
{{ count($officeLocation['employees']) }} |
@if($officeLocation['status'] )
Active
@else
Inactive
@endif
|
@can('office_locations.update')
@endcan
@can('office_locations.delete')
@endcan
@can('logs.read')
@endcan
|
@endforeach
@endcan
@endsection
@push('scripts')
@endpush