@extends('jomhor::services.show') @section('action') @php $generalResponses = collect(config('custom.general_responses', [])) ->mapWithKeys(fn ($response) => [$response => $response]) ->all(); $employees = \Modules\Hr\Entities\Employee::query() ->where('is_officer', 1) ->where('status', 'enabled') ->orderBy('id') ->get(['id', 'name']) ->pluck('name', 'id') ->all(); $attachmentTypes = \Modules\PublicService\Entities\AttachmentType::query() ->orderBy('name') ->get(['id', 'name']) ->pluck('name', 'id') ->all(); @endphp
@endsection @push('scripts') @endpush