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

Our Blog

Home> Our Blog
@foreach ($blogs as $item)
{{ date('F d, Y', strtotime($item->created_at)) }} POST BY ADMIN

{{ $item->title }}

{!! Str::limit($item->description, 180) !!} Read more
@endforeach
{{ $blogs->onEachSide(4)->links() }}
@endsection