@extends('admin.layouts.app') @section('title', 'Impact Numbers Management') @section('content')

Impact Numbers Management

Edit Section
@if(session('success')) @endif
Section Overview
@if($impactSection)
Title:

{{ $impactSection->title }}

Status: {{ $impactSection->is_active ? 'Active' : 'Inactive' }}
@if($impactSection->content)
Description:

{{ $impactSection->content }}

@endif @else
Impact Numbers section not found. Please create it first.
@endif
@if($impactSection && isset($impactSection->data['statistics']))
Statistics ({{ count($impactSection->data['statistics']) }})
@if(count($impactSection->data['statistics']) > 0)
@foreach($impactSection->data['statistics'] as $index => $statistic)

{{ $statistic['number'] }}

{{ $statistic['label'] }}
@if(isset($statistic['description']))

{{ $statistic['description'] }}

@endif
@endforeach
@else

No statistics added yet. Click "Add Statistic" to get started.

@endif
@endif @endsection