@extends('newBase') @section('title', 'Feedback Management') @section('content')
姓名: {{$feedback->userName}}
客户经理: {{$feedback->consultantName ?? 'N/A'}}
销售: {{$feedback->salesName ?? 'N/A'}}
状态: {{$feedback->processed ? 'Processed' : 'Not Processed'}}

反馈

{{$feedback->feedback}}

@csrf
@foreach($feedback->events as $event)
@if(!empty($event->comment)) @endif @if(!empty($event->operatorName)) @endif
@endforeach
@include('common.notification') @include('common.confirmation') @endsection