@extends('layouts.admin') @section('title', 'Demographics') @section('header', 'Demographics Options') @section('subheader', 'Manage department, tenure, and job level options') @section('header-actions') Add Option @endsection @section('content')
@foreach(['department' => 'Departments', 'tenure' => 'Tenure Options', 'job_level' => 'Job Levels'] as $type => $title)

{{ $title }}

@if(isset($demographics[$type]) && $demographics[$type]->count() > 0)
@foreach($demographics[$type] as $option)
{{ $option->label }} ({{ $option->value }})
@csrf @method('DELETE')
@endforeach
@else

No {{ strtolower($title) }} defined.

@endif
@endforeach
@endsection