@extends('layouts.app') @section('title', 'Test Takes Insight') @section('page-title', 'Test Takes Insight') @section('breadcrumb', 'Insights / Live / Test Takes') @section('content')
Upcoming Test attempt analytics
@if($records->count())
@foreach($records as $row) @endforeach
LearnerTest NameScore Attempt DateStatus
{{ $row->user?->name }} {{ $row->course?->title ?? '—' }} {{ $row->meta['mock_test_score'] ?? $row->meta['test_series_score'] ?? '—' }} {{ $row->updated_at?->format('M d, Y') }} {{ ucfirst($row->status) }}
{{ $records->links() }}
@else @endif
@endsection