@extends('front.layouts.app') @section('content')
@if (!is_null($featured_post))

{{ $featured_post->title }}

{{ $featured_post->excerpt }}

Continue reading...

@endif
@if ($latest_posts->count() > 0) @foreach ($latest_posts as $post) @include('front.partials.post_detail', ['post' => $post]) @endforeach @else
No posts found yet.
@endif
@include('front.partials.about')
@endsection