@extends('user.user_dashboard') @section('home')
Your Reflections
@foreach($essays as $index => $essay)
Question {{ $index + 1 }}

{{ $essay->question }}

{{ $answers[$essay->id] ?? 'No answer provided' }}

@endforeach
@endsection