@include('layouts.talentHeader')

Add Questions

@csrf
@error('question') {{ $message }} @enderror
@error('category') {{ $message }} @enderror
@error('duration') {{ $message }} @enderror

List Questions

@foreach($currentUserCompanyQuestions as $index => $currentUserCompanyQuestion) @endforeach
# Questions Category Duation Created By Created On
{{$index + 1}} {{@$currentUserCompanyQuestion->question}} {{@$currentUserCompanyQuestion->category}} {{@$currentUserCompanyQuestion->duration}} Sec {{@\App\User::find(@$currentUserCompanyQuestion->user_id)->name}} {{@($currentUserCompanyQuestion->created_at)?date('d M, Y', strtotime($currentUserCompanyQuestion->created_at)):'N/A'}}
@include('layouts.footer')