@extends('website.layouts.app') @section('title', ($page['title'] ?? 'Customers') . ' – ' . config('website.brand')) @section('meta_description', $page['summary'] ?? '') @section('content') @php $cta = config('website.cta'); $brand = config('website.brand'); $items = $page['items'] ?? []; $featured = collect($items)->firstWhere('featured', true) ?? ($items[0] ?? null); @endphp
@if(!empty($page['eyebrow']))

{{ $page['eyebrow'] }}

@endif

{{ $page['title'] }}

{{ $page['summary'] }}

@if(!empty($page['stats']))
@foreach($page['stats'] as $stat)
{{ $stat['value'] }} {{ $stat['label'] }}
@endforeach
@endif @if($slug === 'testimonials')

{{ $page['caption'] ?? 'Customers' }}

Trusted by educators building serious academies

{{ $page['body'] }}

@if($featured) @endif
@foreach($items as $item) @if($featured && ($item['quote'] ?? '') === ($featured['quote'] ?? '') && ($item['name'] ?? '') === ($featured['name'] ?? '')) @continue @endif
@for($i = 0; $i < (int)($item['rating'] ?? 5); $i++) @endfor

“{{ $item['quote'] }}”

@if(!empty($item['result']))

{{ $item['result'] }}

@endif
{{ strtoupper(substr($item['name'] ?? 'L', 0, 1)) }} {{ $item['name'] ?? '' }} {{ $item['role'] ?? '' }}
@endforeach
@elseif($slug === 'success-stories')

{{ $page['caption'] ?? 'Customers' }}

Growth stories from institutes like yours

{{ $page['body'] }}

@foreach($items as $story)
@if(!empty($story['tag'])) {{ $story['tag'] }} @endif @if(!empty($story['metric']))
{{ $story['metric'] }} {{ $story['metric_label'] ?? '' }}
@endif

{{ $story['title'] }}

@if(!empty($story['summary']))

{{ $story['summary'] }}

@endif
@endforeach
@else

{{ $page['caption'] ?? 'Customers' }}

Unfiltered love from the Learnyst community

{{ $page['body'] }}

@foreach($items as $note)

“{{ $note['quote'] }}”

@endforeach
@endif @if(!empty($related))

More from our customers

Explore stories, reviews, and community love across Learnyst.

@endif

{{ $page['cta_title'] ?? 'Ready to get started?' }}

{{ $page['cta_text'] ?? 'Start your free trial and launch your academy in minutes.' }}

@endsection