@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')
@include('partials.new_alerts')
Office Locations List
{{-- --}} @foreach ($officeLocations as $officeLocation) {{-- --}} @endforeach
Location Location Code No of Employees Status Actions
{{ $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
@endcan @endsection @push('scripts') @endpush