@extends('layout.admin') @section('content')

Question for {{ $athlete->first_name.' '.$athlete->last_name }}

@if(0 < count($questions))
@foreach($questions as $key => $question) @endforeach
id question category response Date
{{ $question->question_id }} {{ $question->question }} ????????? ????????? {{ Carbon\Carbon::parse($question->created_at)->formatLocalized('%A %d %B %Y') }}
{{ $questions->links() }}
@else
Questions do not exist
@endif
@endsection