@extends('layouts.master') @section('page_title', 'Exam Pins') @section('content')
Exam Pins
{!! Qs::getPanelOptions() !!}
There are {{ $pin_count }} valid pins that have not been used
@foreach($valid_pins->chunk(4) as $chunk)
@foreach($chunk as $vp)
{{ $vp->code }}
@endforeach
@endforeach
{{--Used Pins--}}
A total of {{ $used_pins->count() }} pin(s) have been used and may no longer be valid Delete ALL Used Pins
@foreach($used_pins as $up) @endforeach
S/N Pin Used By User Type Used For Student Date Used
{{ $loop->iteration }} {{ $up->code }} {{ $up->user->name }} {{ $up->user->user_type }} {{ $up->student->name }} {{ $up->updated_at }}
{{--Pins List Ends--}} @endsection