@extends('admin.layouts.app') @section('title', 'Designations') @section('breadcrumb') @endsection @section('content')
@foreach(['teaching','non-teaching','admin'] as $type) @php $items = $designations->where('type', $type); @endphp
{{ ucfirst(str_replace('-',' ',$type)) }}
@forelse($items as $d)
{{ $d->name }} {{ $d->employees_count }}
@empty
None yet
@endforelse
@endforeach
@endsection