@extends('layouts.app') @section('title', 'Christian Bible Learning Platform - Home') @section('meta_description', 'Learn the Bible with explanations, Christian teachings, and articles.') @section('content')

Christian Bible
Learning Platform

Read the Bible, explore profound explanations, and grow your faith in a premium spiritual space.

Use our API — Bible search + free bible-api.com integration

{{ __('For Children & Families') }}

{{ __('Kids Zone') }}

{{ __('Explore animated Bible stories, Scripture memory games, safe quizzes, and joyful rewards designed for growing hearts.') }}

{{ __('Enter Kids Zone') }} →
Children learning through Bible games
{{ __('AI-Powered') }}

{{ __('Theological Q&A Assistant') }}

{{ __('Ask complex theological questions and get instant, reliable answers from our dedicated local knowledge base. Enhance your spiritual study like never before.') }}

{{ __('Ask a Question') }} →
@if($verseOfTheDay)

"{{ $verseOfTheDay->verse_text }}"

{{ $verseOfTheDay->chapter->book->localizedName() }} {{ $verseOfTheDay->chapter->chapter_number }}:{{ $verseOfTheDay->verse_number }}
Read full context
@endif

Latest Bible Explanations

@forelse($latestExplanations as $exp)

{{ $exp->title }}

{{ Str::limit(strip_tags($exp->explanation_text), 120) }}

@php $v = $exp->verse; @endphp 📖 {{ $v->chapter->book->localizedName() }} {{ $v->chapter->chapter_number }}:{{ $v->verse_number }} →
@empty

No explanations yet.

@endforelse

Featured Teachings

@forelse($featuredTeachings as $t)
@if($t->image)
@else
@endif
@if($t->show_on_home){{ __('Pinned') }}@endif @if($t->category){{ $t->category }}@endif

{{ $t->title }}

{{ Str::limit(strip_tags($t->content), 100) }}

Read teaching →
@empty

No teachings yet.

@endforelse

Latest Articles

@forelse($latestArticles as $a)
@if($a->image)
@else
@endif
@if($a->show_on_home){{ __('Pinned') }}@endif

{{ $a->title }}

@if($a->author){{ $a->author }}@endif

{{ Str::limit(strip_tags($a->content), 100) }}

Read article →
@empty

No articles yet.

@endforelse
@endsection