@extends('layouts.default') @section('title', 'Read the Latest Ecommerce News | Synamen') @section('description', 'Looking for ecommerce news? Check out our site') @section('keywords', 'Ecommerce news') @section('content')

NEWS

@foreach($BlogPost as $news)

{{ date('d M Y', strtotime($news->published_at)) }}

{{ $news->title }}

{!! $news->content !!}
@endforeach
@stop