@extends('layouts/contentNavbarLayout') @section('title', 'Challenge Maps') @section('content')

Challenge Maps

Manage challenge maps and their checkpoints

@forelse($maps as $map)
@if($map->image) {{ $map->name }} @else
@endif
{{ $map->name }}

{{ Str::limit($map->description ?? 'No description available', 100) }}

{{ number_format($map->total_steps) }}
Total Steps
{{ $map->checkpoints->count() }}
Checkpoints
{{ $map->company_challenges_count + $map->global_challenges_count }}
Used By
@empty

No Challenge Maps Found

Create your first challenge map to get started.

Create New Map
@endforelse
@if($maps->hasPages())
{{ $maps->links() }}
@endif
@endsection