@extends('layouts.public') @section('title', 'Success Stories - ' . config('app.name')) @section('meta_description', 'Read real success stories from students and see how they achieved their study abroad goals.') @push('styles') @vite('resources/css/success-stories.css') @endpush @push('scripts') @vite('resources/js/success-stories.js') @endpush @php $toImage = function (?string $image): string { if (! $image) { return ''; } if (str_starts_with($image, 'http://') || str_starts_with($image, 'https://')) { return $image; } return asset('storage/' . ltrim($image, '/')); }; @endphp @section('content')

{{ $content['hero']['highlight'] ?? '' }} {{ str_replace($content['hero']['highlight'] ?? '', '', $content['hero']['title'] ?? '') }}

Success stories hero image

{{ $content['intro']['title'] ?? '' }}

{{ $content['intro']['text'] ?? '' }}

@foreach(($content['testimonials'] ?? []) as $item)

{{ $item['quote'] ?? '' }}

{{ $item['initials'] ?? 'ST' }}
{{ $item['name'] ?? '' }} {{ $item['meta'] ?? '' }}
@endforeach

{{ $content['mid_cta']['title'] ?? '' }}

{{ $content['mid_cta']['text'] ?? '' }}

@if(isset($visaStories) && $visaStories->count())

Visa Success Stories

{{ $content['intro']['text'] ?? 'Real students who achieved their dreams of studying abroad.' }}

@foreach($visaStories as $story)
@if($story->image_url)
{{ $story->title }}
@endif

{{ $story->title }}

@if($story->description)

{{ $story->description }}

@endif @if($story->student_name || $story->university || $story->country_name) {{ $story->student_name }}{{ $story->student_name && ($story->university || $story->country_name) ? ' · ' : '' }}{{ $story->university }}{{ $story->university && $story->country_name ? ' · ' : '' }}{{ $story->country_name }} @endif
@endforeach
@endif

Hear From {{ $content['videos']['highlight'] ?? '' }}

{{ $content['videos']['text'] ?? '' }}

@if(isset($studentReviews) && $studentReviews->count()) @foreach($studentReviews as $review)
{{ $review->title }} @if($review->video_url) Play @else
Play
@endif

{{ $review->title }}

@endforeach @else @foreach(($content['videos']['items'] ?? []) as $video)
{{ $video['title'] ?? '' }}
Play

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

@endforeach @endif
@php $ctaData = $homeContent['final'] ?? []; @endphp @include('partials.final-cta', [ 'cta' => $ctaData, 'outerClass' => 'ss-section', 'wrapClass' => 'ss-wrap', 'cardClass' => 'ss-final', ]) @include('partials.visa-success-slider', ['visaStories' => $visaStories ?? collect()])
{{-- sticky apply removed per request --}} @endsection