@extends('front.layouts.master') @section('seo_title', $global_other_page_items->page_blog_seo_title) @section('seo_meta_description', $global_other_page_items->page_blog_seo_meta_description) @section('content')

{{ $global_other_page_items->page_blog_title }}

@foreach($posts as $row)
{{ date('d M, Y', strtotime($row->created_at)) }}
{{ $row->title }}
{!! nl2br($row->short_description) !!}
{{ __('Read More') }}
@endforeach
{{ $posts->links() }}
@endsection