@extends('layouts.app') @section('title', 'Scriptu | Courses') @section('content')
@auth

Welcome, {{ auth()->user()->name }} 👋🏽

@else

Welcome 👋🏽

@endauth

Explore our courses and learn everything about the bible.

List of Courses

@foreach($topics as $topic)
Image

{{ $topic->title }}

{{ $topic->description }}

@endforeach
@php $showSidebar = false; $showTopicsSidebar = true; @endphp @endsection