@extends('adminlte::page') @section('title', 'Aptitude Test Attempts') @section('content_header')

Aptitude Test Attempts

@stop @section('content')

All Attempts

New Attempt
@if($attempts->count() > 0) @foreach($attempts as $attempt) @endforeach
# Student Counselor Total Score Date Actions
{{ $loop->iteration + ($attempts->currentPage()-1) * $attempts->perPage() }} {{ $attempt->student->name }} ({{ $attempt->student->admission_no }}) {{ $attempt->counselor->name }} {{ $attempt->total_score }} {{ $attempt->created_at->format('d M Y, H:i') }} View PDF
{{-- Pagination --}}
{{ $attempts->links() }}
@else
No aptitude test attempts found. Create one now.
@endif
@stop