@extends('layouts.page') @section('content')

Our Blog

Home> Our Blog
{{ date('F d, Y', strtotime($blog->created_at)) }} POST BY ADMIN

{{ $blog->title }}

{!! $blog->description !!}
{{-- --}}

Recent Posts

@foreach ($recent_posts as $post)

{{ $post->title }}

{{ date('F d, Y', strtotime($post->created_at)) }}

@endforeach

Categories

Tags

@foreach ($tags as $tag) {{ $tag }} @endforeach
@endsection