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

{{$blogs->title}}

By: {{ $blogs->user->name }}

BLOG | {{ $blogs->created_at->format('d F Y') }}
{!! $blogs->description !!}
@if($prevBlog)

Previous Post

@else

No Previous Post

@endif
@if($prevBlog)

Blog | {{ $prevBlog->created_at->format('d M, Y') }}

{{ $prevBlog->title }}

{{ $prevBlog->user->name }}

Read More >

@endif
@if($nextBlog)

Next Post

@else

No Next Post

@endif
@if($nextBlog)

Blog | {{ $nextBlog->created_at->format('d M, Y') }}

{{ $nextBlog->title }}

{{ $nextBlog->user->name }}

Read More >

@endif
@include('layouts.station') @include('layouts.footer') @endsection