@extends('digitalmenu::layouts.app') @section('title', 'My Feedback') @section('content')

Feedback

Your past submissions to our team.

feedback

No feedback submitted yet.

Use the button in the bottom-right corner to share your thoughts.

@foreach ($feedbacks as $fb) @php $categoryLabels = [1 => 'General', 2 => 'Bug Report', 3 => 'Feature Request']; $categoryColors = [1 => 'bg-slate-100 text-slate-600', 2 => 'bg-red-100 text-red-700', 3 => 'bg-blue-100 text-blue-700']; $statusLabels = [1 => 'New', 2 => 'In Review', 3 => 'Resolved']; $statusColors = [1 => 'bg-teal-100 text-teal-700', 2 => 'bg-amber-100 text-amber-700', 3 => 'bg-green-100 text-green-700']; $catLabel = $categoryLabels[$fb->type] ?? 'General'; $catColor = $categoryColors[$fb->type] ?? 'bg-slate-100 text-slate-600'; $statLabel = $statusLabels[$fb->status] ?? 'New'; $statColor = $statusColors[$fb->status] ?? 'bg-teal-100 text-teal-700'; @endphp
{{ $catLabel }}
{{ $fb->created_at->format('M d, Y ยท g:i A') }}
@for ($s = 1; $s <= 5; $s++) star @endfor

{{ $fb->message_text }}

@endforeach
@endsection @section('scripts') @endsection