@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')
| {{ __('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, '.', ',') }} |