@extends('layouts.app') @section('content') @php $modelTypeAccent = [ 'anatomy' => 'rose', 'cellular' => 'emerald', 'equipment' => 'sky', 'person' => 'amber', 'place' => 'indigo', 'historical' => 'fuchsia', ]; @endphp {{-- HERO --}}

Immersive Medical Learning

Interactive 3D Study Platform

Explore anatomical models, follow guided lessons, and test understanding with integrated quizzes — built for veterinary and medical students.

@if(!empty($stats))

{{ $stats['models'] }}

Published models

{{ $stats['lessons'] }}

Guided lessons

{{ $stats['quizzes'] }}

Quizzes ready

{{ $stats['bodySystems'] }}

Body systems

@endif
{{-- FEATURED MODELS --}}

Featured Models

View all →
@forelse($featuredModels as $model) @php $accent = $modelTypeAccent[$model->model_type] ?? 'sky'; @endphp @if($model->thumbnail_url)
@else @endif
{{ ucfirst($model->model_type) }}

{{ $model->title }}

{{ $model->programme }} · {{ $model->species }}

{{ $model->estimated_minutes }} min Study model →
@empty

No published models yet.

@endforelse
{{-- FEATURED LESSONS --}}

Featured Lessons

View all →
@forelse($featuredLessons as $lesson)

{{ $lesson->title }}

{{ $lesson->summary }}

Open lesson →
@empty

No published lessons yet.

@endforelse
@endsection