@extends('layouts.website_layout') @section('meta_title', $news->meta_title) @section('meta_description', $news->meta_description) @section('canonical_tag', "blog/".$news_category->news_category_url_slug."/".$news->news_url_slug) @section('banner_image', "blogs/".$news->news_thumbnail) @section('content')

{{$news->news_title}}

@if(!empty(count($news_tags)))

Related Tags :

@foreach($news_tags as $news_tag_row) {{$news_tag_row->blog_tag_name}} @endforeach
@endif

{{date('d F Y', strtotime($news->news_published_date))}}

@if(!empty($news->news_author_name))
@if(!empty($news->news_author_picture)) {{$news->news_author_name}} @else {{$news->news_author_name}} @endif

{{$news->news_author_name}}

@endif
{!!$news->news_content!!}
@endsection