@extends('layouts.master') @section('title', 'Work Flow List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')
@yield('title')

{{-- ===================================================== --}} {{-- WORKFLOW INFORMATION --}} {{-- ===================================================== --}}

Workflow Information

{{ $wf->wf_name ?? '-' }}
{{ $flows->count() }} Steps
@forelse($flows as $key => $item) {{-- ========================================= --}} {{-- STEP --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- POSITION TYPE --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- MAIN POSITION --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- SUB POSITION --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- POSITION --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- FACULTY MEMBER --}} {{-- ========================================= --}} {{-- ========================================= --}} {{-- ACTIVITY --}} {{-- ========================================= --}} @empty @endforelse
Step Position Type Main Position Sub Position Position Faculty Member's Name Activity
{{ $key + 1 }} @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 @if($item->wf_position_type == 'FACULTY') - @else {{ $item->main_position_name ?? '-' }} @endif @if($item->wf_position_type == 'SUB') {{ $item->sub_position_name ?? '-' }} @else - @endif {{ $item->position_name ?? '-' }} @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
{{ $item->wf_activity_name ?? '-' }}
No workflow steps found.
@include('layouts.footer') @endsection