xxxxxxxxxx
public function register()
{
$this->shortCodeService = new ShortcodeService();
$this->shortCodeService->register('article_content_read_also', function ($params) {
$slug = $params['slug'];
$PostTitle = str_replace('-', ' ', $slug);
$PostTitle = ucfirst($PostTitle);
$route = route('view-post', $slug);
return "<div class='read-also-post-link'>
<a href=" . $route . " target='_blank'><i class='fa fa-arrow-right'></i> " . $PostTitle . "</a>
</div>";
});
}