@extends('Manager.layout') @section('title',"Category Admins") @section('page-name',$category." Admins") @section('page-detail',"All Requested Points Information") @section('body')
@foreach($admins as $employee) @endforeach
Admin Name Employee ID Join Date Status Action
@if (!empty($employee->image)) Employee Image @else {{ strtoupper(implode('', array_merge(array_map(fn($part) => is_numeric($part) ? $part : $part[0], array_slice(explode(' ', $employee->name), 0, 2)),preg_match('/\d/', $employee->name, $matches) ? [$matches[0]] : []))) }} @endif
{{$employee->name}}
{{$employee->employee_id}} {{ $employee->created_at->format('m-d-y') }} @if($employee->status === '2') Active @elseif($employee->status === '1') Inactive @else Pending @endif
@endsection @section('custom-scripts') @endsection