25 lines
580 B
PHP
25 lines
580 B
PHP
@extends('layouts.guest')
|
|
|
|
@section('title', 'Home')
|
|
|
|
@section('content')
|
|
<section id="blog-head" class="bubble-panel">
|
|
<h1>{{ config('blog.publishing_name') }}<h1>
|
|
<p><i>{{ config('blog.subheading') }}</i></p>
|
|
</section>
|
|
<section>
|
|
@forelse($articles as $article)
|
|
<article>
|
|
<h3>
|
|
Article: {{ $article->title }}
|
|
</h3>
|
|
<p>
|
|
{!! $article->body !!}
|
|
</p>
|
|
</article>
|
|
@empty
|
|
<div>No articles published yet. Check back soon!</div>
|
|
@endforelse
|
|
</section>
|
|
@endsection
|