@extends('layouts.app') @section('content')

Organization Structure Settings

Manage company locations and subsidiaries

Back to Settings
Organization Structure
@csrf @method('PUT')
Company Locations

Define the physical locations where your company operates. These will be available when adding employees.

@if(!empty($settings->company_locations)) @foreach($settings->company_locations as $key => $location)
@endforeach @else
@endif
Company Subsidiaries

Define your company's subsidiaries or divisions. These help organize employees by business units.

@if(!empty($settings->company_subsidiaries)) @foreach($settings->company_subsidiaries as $key => $subsidiary)
@endforeach @else
@endif
Quick Tips
  • Locations: Physical offices, branches, or work sites
  • Subsidiaries: Business units, divisions, or legal entities
  • These options will appear when adding new employees
  • You can update these settings anytime
  • Existing employee records won't be affected
Current Setup
Locations
{{ count($settings->company_locations ?? []) }}
Subsidiaries
{{ count($settings->company_subsidiaries ?? []) }}
@endsection @push('scripts') @endpush