@extends('front.include.app') @section('content')
img
{{-- ===================================================================== HERO SLIDER ====================================================================== --}} @php $bannerUrl = optional($content)->getFirstMediaUrl('banner_image') ?: asset('front/images/mainBnnr.webp'); $sliders = $content->sliders ?? []; @endphp
@forelse($sliders as $slide)

{{ $slide['subtitle'] }}

{{ $slide['title'] ?? '' }}

{{-- @if (!empty($slide['subtitle']))

{{ $slide['subtitle'] }}

@endif --}} @if (!empty($slide['description']))

{{ $slide['description'] }}

@endif Join Now
@empty

Welcome to Proactive Peers

A Safe Space for Healing

We provide a compassionate online community where you can share your story, find support, and begin the journey toward recovery.

Join Now
@endforelse
{{-- ===================================================================== ABOUT SECTION ====================================================================== --}} @php $aboutImg = optional($content)->getFirstMediaUrl('about_image') ?: asset('front/images/about-imag.webp'); @endphp

{{ $content->about_subhead ?? 'company overview' }}

{{ $content->about_heading ?? 'About Proactive Peers' }}

{{ $content->about_description ?? '' }}

Read More About Our Mission
{{-- ===================================================================== SERVICES SECTION ====================================================================== --}}

{{ $serviceCMS->services_subhead ?? 'our services' }}

{{ $serviceCMS->services_heading ?? 'How We Support Your Journey' }}

@forelse($services as $service)
@if ($service->getMedia('service_image')->isNotEmpty()) {{ $service->title }} @else {{ $service->title }} @endif

{{ $service->title }}

{{ $service->description }}

@empty {{-- Static fallback --}}

Community Support

Join a vibrant and secure community.

Online Audio Groups

Connect with peers anytime.

Guest Presentations

Exclusive monthly events.

One-on-One Consultations

Personalized support for your needs.

@endforelse
{{-- ===================================================================== PLAY SECTION ====================================================================== --}} @php $playImg = optional($content)->getFirstMediaUrl('play_image') ?: asset('front/images/play-bg.webp'); @endphp
{{-- ===================================================================== LATERAL PROGRAM SECTION ====================================================================== --}} @php $lateralPoints = $content->lateral_points ?? [ 'Find strength in what remains.', 'Build positivity and joy in the present.', 'Create new goals and a purpose for the future.', ]; $groupBoxes = $content->group_boxes ?? [ 'Safety and Containment Training', 'Trauma Action Planning', 'Anxiety Control Exercises', '"Who am I?" – a deep journey of exploration into who, where, and how our addictions came to be.', 'Mending Relationships. Physical pain controls our lives and shapes the Relationships with others.', ]; @endphp

{{ $content->lateral_heading ?? 'The LATERAL Program Life-Altering Trauma Emotional Recovery And Learning' }}

@if ($content->lateral_description ?? false)

{!! nl2br(e($content->lateral_description)) !!}

@else

Healing after trauma is not just about the physical; it's about facing grief, acceptance, and rebuilding a sense of self. Through the LATERAL Program, we shift the focus from "what was lost" to "what is possible."
We cannot change the past, but together we can:

@endif @if (count($lateralPoints))
    @foreach ($lateralPoints as $point) @if ($point)
  • {{ $point }}
  • @endif @endforeach
@endif @if ($content->lateral_footer_text ?? false)

{{ $content->lateral_footer_text }}

@else

Your loss does not erase your worth; it can lead to new resilience, deeper understanding, and a renewed vision for life.

@endif

{{ $content->groups_heading ?? 'Groups at Proactive Peers Tools' }}

@foreach ($groupBoxes as $box) @if ($box)

{{ $box }}

@endif @endforeach
{{-- ===================================================================== SUBSCRIPTION SECTION ====================================================================== --}} @php $plans = $content->plans ?? [ [ 'name' => 'Basic Plan', 'price' => '20', 'duration' => 'for 20 mins', 'description' => 'Quick, focused check-ins when you need reassurance. A safe space to release heavy thoughts and emotions.', ], [ 'name' => 'Advance', 'price' => '45', 'duration' => 'per group for 1 hour', 'description' => 'Guided group discussions with peers who truly understand. Build strength, resilience, and hope through community support.', ], [ 'name' => 'Premium', 'price' => '60', 'duration' => 'per month 15 mins', 'description' => 'Consistent check-ins that keep you grounded and accountable. Personalized guidance to help you navigate challenges.', ], ]; @endphp

{{ $content->subscription_subhead ?? 'subscription' }}

{{ $content->subscription_heading ?? 'Affordable Plans for Your Recovery Journey' }}

@foreach ($plans as $plan)
@endforeach
@include('front.partials.calendar') {{-- ===================================================================== COMMUNITY SECTION ====================================================================== --}}

{{ $content->community_subhead ?? 'Community' }}

{{ $content->community_heading ?? 'Connect with Others in Recovery' }}

Join Our Community
{{-- ===================================================================== TESTIMONIALS SECTION ====================================================================== --}}

{{ $content->testimonials_subhead ?? 'Testimonials' }}

{{ $content->testimonials_heading ?? 'Stories of Strength and Recovery' }}

@forelse($testimonials as $t)
    @for ($i = 1; $i <= 5; $i++)
  • @endfor

{{ $t->message }}

{{ $t->name }}
@empty {{-- Static fallback --}}
    @for ($i = 1; $i <= 5; $i++)
  • @endfor

Before joining Proactive Peers, I felt trapped in my own struggles. The online audio groups gave me a safe place to finally speak without judgment.

Michael R.
@endforelse
@endsection