@extends('layouts.master') @section('content')

Student Registrations

Track registrations and goal scores for today's session.

{{ $total }}

Total Registrations

{{ $played }}

Played Today

{{ $topScore }}

Top Score

Today's Sessions
{{ $total }} students
@foreach ($registrations as $reg) @endforeach
ID Name Phone Email Today's Shots Total Score Actions
#{{ str_pad($reg['id'], 4, '0', STR_PAD_LEFT) }}
{{ strtoupper(substr($reg['name'], 0, 1)) }}
{{ $reg['name'] }}
{{ $reg['phone'] }} {{ $reg['email'] }}
@if(is_null($reg['today_goals'])) Not played @else @foreach($reg['today_goals'] as $i => $goal) @if($goal)
@else
@endif @endforeach @endif
{{ $reg['total_score'] }}
@if(is_null($reg['today_goals'])) @else Played ✓ @endif

Showing {{ $total }} students

Scoreboard

Recording Shots For

Today's Shots

Shot 1
Shot 2
Shot 3

Current Shot

Shot 1

Cumulative Total

0 pts
@endsection @push('js') @endpush