@extends('layouts.app') @section('title', 'Christian Teachings') @section('meta_description', 'Browse Christian teachings and studies.') @section('content')

Teachings

@if($categories->isNotEmpty())
All @foreach($categories as $cat) {{ $cat }} @endforeach
@endif
@forelse($teachings as $t)
@if($t->image) @endif
@if($t->category){{ $t->category }}@endif

{{ $t->title }}

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

Read more →
@empty

No teachings yet.

@endforelse
{{ $teachings->links() }}
@endsection