@extends('admin.layouts.main') @section('content')

Feedbacks


@foreach ($feedback as $i => $item) @endforeach
# User Course Chapter Sub Chapter Content Feedback Type Message Created At Action
{{ $i + 1 }} {{ $item->user->name ?? 'N/A' }} {{ $item->content->subChapter->chapter->course->name ?? 'N/A' }} {{ $item->content->subChapter->chapter->title ?? 'N/A' }} {{ $item->content->subChapter->title ?? 'N/A' }} {{ $item->content->title ?? 'N/A' }} {{ ucfirst($item->type) }} {{ $item->message }} {{ $item->created_at->format('d-m-Y H:i') }}
@endsection @section('jscode') @endsection