@extends('user.layout.app') @section('content')

Questions Asked

{{ $postCount ?? '0' }}
My Questions
    @forelse ($userQuestions->posts as $item)
  • {{ $item->title }}

    Status: {{ $item->comments->isNotEmpty() ? 'Answered' : 'Pending' }}

    {{-- @if ($latestComment = $item->comments->sortByDesc('created_at')->first())--}} {{--

    --}} {{-- Admin Response:--}} {{-- {{ $latestComment->comment }}--}} {{--

    --}} {{-- @else--}} {{--

    No comments yet.

    --}} {{-- @endif--}}
    {{ $item->comments->isNotEmpty() ? 'Answered' : 'Pending' }}
  • @empty
  • When will I get my 401k returns?

    Status: Answered

    Admin Response: The returns will be available within 30 days.

    Answered
  • @endforelse
@endsection