@extends('frontend.layouts.registration') @section('title', $title) @section('description', $description) @section('content') @php $steps = [ 'details' => 'Event', 'form' => 'Register', 'done' => 'Done', ]; $step_keys = array_keys($steps); $current_index = (int) array_search($step, $step_keys, true); $completed_count = max(0, $current_index); $total_steps = count($steps); $progress_pct = (int) round(($completed_count / max(1, $total_steps - 1)) * 100); if ($step === 'done') { $progress_pct = 100; $completed_count = $total_steps; } $countdown_target = $event->start_date?->toIso8601String(); $social_links = collect($social_links ?? []); @endphp
{{ $completed_count }} of {{ $total_steps }} completed
{{ $event->category?->name ?? 'Event registration' }}