@extends('admin.layouts.app') @section('title', 'Visa Success Stories') @section('content')

Visa Success Stories

Global pool — shown automatically on Home page and all Country pages. {{ $stories->total() }} total.

+ Add Story
@if(session('success'))
{{ session('success') }}
@endif
@if($stories->isEmpty())
No visa success stories yet. Add your first one.
@else @foreach($stories as $story) @endforeach
Story Actions
@if($story->image_url) {{ $story->title }} @else
@endif

{{ $story->title }}

@if($story->student_name)

{{ $story->student_name }}{{ $story->program ? ' · ' . $story->program : '' }}

@endif
Edit
@csrf @method('DELETE')
{{ $stories->links() }}
@endif
@endsection