@extends('layouts.questionnaire-game', [ 'pageTitle' => $pageTitle ?? 'Resultado', 'qgTheme' => $qgTheme, 'faviconUrl' => $faviconUrl ?? null, 'projectName' => $projectName ?? null, ]) @section('content')
@php $percent = ($result['total'] ?? 0) > 0 ? (int) round(100 * ($result['correct'] ?? 0) / $result['total']) : 0; $pointsFormatted = \App\Support\PortalPointsFormatter::format($result['total_points'] ?? 0); @endphp

Resultado

@if(($elapsedSeconds ?? 0) > 0)
{{ sprintf('%02d:%02d', intdiv($elapsedSeconds, 60), $elapsedSeconds % 60) }}
@endif

Bateria concluída

Missão cumprida!

{{ $battery->title }}

{{ $result['correct'] }}/{{ $result['total'] }} Acertos ({{ $percent }}%)
{{ $pointsFormatted }} Pontos conquistados
@if(($elapsedSeconds ?? 0) > 0)
{{ sprintf('%02d:%02d', intdiv($elapsedSeconds, 60), $elapsedSeconds % 60) }} Tempo total
@endif
@endsection @push('scripts') @endpush