@extends('layouts.main_dashboard.app') @section('styles') @endsection @section('title', __('dashboard.Compare Student Groups') @section('page_heading', __('dashboard.Compare Student Groups')) @section('breadcrumb') @if (auth()->user()->type == 'admin') @endif @endsection @section('actions') {{ __('dashboard.View Statistics') }} @endsection @section('content')

{{ __('dashboard.Compare Student Groups') }}

{{ __('dashboard.Group 1') }}

{{ __('dashboard.Group 2') }}

{{ __('dashboard.Comparison Results') }}

@foreach($comparison['group1']['data'] as $eventData) @php $group2Event = $comparison['group2']['data']->firstWhere('event', $eventData['event']) ?? ['total_time' => 0]; @endphp @endforeach
{{ __('Event') }} {{ __('Group 1 Time (Seconds)') }} {{ __('Group 2 Time (Seconds)') }}
{{ $eventData['event'] ? $eventData['event'] : __('dashboard.Unknown events') }} {{ number_format($eventData['total_time'], 2, '.', ',') }} {{ number_format($group2Event['total_time'], 2, '.', ',') }}
{{ __('Total Time for All Events') }} {{ number_format($comparison['group1']['total_time'], 2, '.', ',') }} {{ number_format($comparison['group2']['total_time'], 2, '.', ',') }}
@endsection @section('scripts') @endsection