@extends('layouts.main-app') @section('title','Home') @section('content') @include('layouts.navbar')

Blogs

{{$blogs->created_at->format('F d, Y')}}

{{$blogs->title}}

{!!$blogs->subtitle!!}

Recent Posts

@foreach ($recent_posts as $recent_post)

{{$recent_post->title}}

{{$recent_post->created_at->format('F d, Y')}}

@endforeach
@include('layouts.footer') @endsection