@extends('layouts.master') @section('mainContent')
{{ $recData->evaluation_name }}
  • Project name
    {{ $recData->project_name ?? '-' }}
  • Service type
    {{ $recData->serviceTypeData->name ?? '-' }}
  • Vendor type
    {{ $recData->vendorTypeData->name ?? '-' }}
  • Evaluation date
    {{ ConvertDateFormat($recData->evaluation_date) }}
Justification/Rationale:

{{ $recData->justification }}

Vendor Evaluation Info
@php $criteria = json_decode($recData->criteria, true); @endphp @if (!empty($recData->alteration)) @php $alteration = json_decode($recData->alteration, true); @endphp @foreach ($alteration as $key => $data) @php $weigh = ''; @endphp
{{ $data['vendor_name'] }}

Criteria

Weightage

Scale

@foreach ($criteria as $ckey => $cdata)
{{--
{{ $cdata['criteria'] }} {{ $cdata['weightage'] }}
--}}

{{ $cdata['criteria'] }}

{{ $cdata['weightage'] }}
@php $dWeightage = ($data['weightage'][$ckey]) ?? 1; @endphp {{--
{{ ($data['weightage'][$ckey]) ?? 1 }}
--}}
@endforeach
@endforeach @endif
@endsection @section('customModal') @endsection