@extends('layouts.main') @section('title', 'News') @section('content')
{{$news->tags}}

{{ucfirst($news->name)}}

@if($news->createdBy->profile_pic) Profile @else Profile @endif
{{ucfirst($news->createdBy->fname)}} {{ucfirst($news->createdBy->lname)}}
{{date('d l Y',strtotime($news->created_at))}}
{{$news->heading_intro}}
{!! html_entity_decode($news->para_intro) !!}
{{$news->heading_elaboration}}
{!! html_entity_decode($news->para_elaboration) !!}
@if($news->conclusion_picture) Profile @endif @if($news->heading_conclusion)
{{$news->heading_conclusion}}
{!! html_entity_decode($news->para_conclusion) !!}
@endif
@include('frontend.news.related-news')
@endsection