@extends('layouts.master') @section('title') Supplier Surveys @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Procurement @endslot @slot('title') Supplier Satisfaction Insights @endslot @endcomponent {{-- KPI cards --}}
{{ $c['l'] }}
| Supplier | Requisition | Sentiment | Rating | Comment | Date |
|---|---|---|---|---|---|
| {{ $s->supplier?->name }} | {{ $s->requisition?->reference_no ?? '—' }} | {{ $s->sentiment === 'up' ? '👍' : '👎' }} | @for($i=1;$i<=5;$i++){{ $i <= $s->rating ? '★' : '☆' }}@endfor | {{ \Illuminate\Support\Str::limit($s->comment, 50) ?: '—' }} | {{ optional($s->submitted_at)->format('d M Y') }} |
| No completed surveys yet. | |||||