@extends('layouts.master') @section('title', 'Workflow Waiting') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') {{-- @yield('title') --}} {{-- @include('layouts.title') --}} {{-- CCCCCCC --}} @yield('title') {{-- History --}} {{-- Add Student --}} {{ csrf_field() }} No. Project Name Quotation No. All @foreach ($quotation as $i => $item) {{ ++$i }} {{-- {{ $person->student_code }} {{ $person->student_firstname }} {{ $person->student_lastname }} --}} {{ $item->quotation_project_name }} {{ $item->quotation_no }} @endforeach {{-- @if(Auth::user()->hasAnyRole(['Admin_SA', 'Admin_IT'])) --}} Submit {{-- @else @endif --}} Choose Workflow @foreach ($workflow as $i => $item) {{ $item->workflow_name }} @foreach(explode('///', $item->workflow_role_id) as $r) @php $role = DB::table('roles')->where('id', $r)->first(); @endphp {{ $role->name ?? '' }} @endforeach @endforeach Submit @include('layouts.footer') @endsection