{!! $post->content !!}
$post = new \XMLReader();
$post->open('Posts.xml');
while($post->read()) {
if ($post->nodeType == \XMLReader::ELEMENT && $post->name == 'post') {
$post = new Post;
$post->fill(['post_id' => $post->getAttribute('Id'), 'content'=>html_entity_decode($post->getAttribute('Content'))]);
$post->save();
}
}
$post->close();