8 lines
645 B
PHP
8 lines
645 B
PHP
|
|
@foreach($users->where('department_id', $department->id)->where('id', '<>', Auth::user()->id) as $user)
|
|
<option value = "{{ 'uid-'.$user->id }}" >{{ $gap }} {{ $user->first_name }} {{ $user->last_name }} - ({{ dataTranslation($user->role_name) }}, {{ dataTranslation($department->name).' Dep.' }})</option>
|
|
@endforeach
|
|
|
|
@foreach($departments->where('parent_id',$department->id) as $child_department)
|
|
@include('document-workflows.create_document_reviewer_sub_department_options', ['department'=>$child_department,'gap'=>' -'])
|
|
@endforeach |