| Step | Position Type | Main Position | Sub Position | Position | Faculty Member's Name | Activity |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{-- ========================================= --}} {{-- POSITION TYPE --}} {{-- ========================================= --}}@if($item->wf_position_type == 'FACULTY') FACULTY @elseif($item->wf_position_type == 'MAIN') MAIN @elseif($item->wf_position_type == 'SUB') SUB @else {{ $item->wf_position_type ?? '-' }} @endif | {{-- ========================================= --}} {{-- MAIN POSITION --}} {{-- ========================================= --}}@if($item->wf_position_type == 'FACULTY') - @else {{ $item->main_position_name ?? '-' }} @endif | {{-- ========================================= --}} {{-- SUB POSITION --}} {{-- ========================================= --}}@if($item->wf_position_type == 'SUB') {{ $item->sub_position_name ?? '-' }} @else - @endif | {{-- ========================================= --}} {{-- POSITION --}} {{-- ========================================= --}}{{ $item->position_name ?? '-' }} | {{-- ========================================= --}} {{-- FACULTY MEMBER --}} {{-- ========================================= --}}
@if($item->wf_position_type == 'FACULTY')
Request Owner
Faculty member who submits the request
@elseif(
isset($item->faculty_members)
&&
$item->faculty_members->count() > 0
)
@foreach($item->faculty_members as $faculty)
{{ $faculty->faculty_title }}
{{ $faculty->faculty_firstname }}
{{ $faculty->faculty_lastname }}
@endforeach
@else
No faculty assigned
@endif
|
{{-- ========================================= --}}
{{-- ACTIVITY --}}
{{-- ========================================= --}}
{{ $item->wf_activity_name ?? '-' }} |
| No workflow steps found. | ||||||