@extends('frontend.layouts.app') @section('meta_title', $news->meta_title ?? $news->title) @section('meta_description', $news->meta_description ?? Str::limit(strip_tags($news->description), 160)) @section('meta_keywords', $news->keywords) @section('og_type', 'article') @section('og_image')@endsection @section('content')

{{ $news->title }}

{{ $news->category?->name }} {{ bangla_date($news->publish_date, 'd F Y, h:i A') }} {{ bangla_date($news->view_count . '', 'd') ? $news->view_count . ' ??? ????' : '' }} @if($news->reporter) {{ $news->reporter->name }}@endif
@if($news->featured_image)
{{ $news->title }}
@endif @if($news->short_description)

{{ $news->short_description }}

@endif
{!! $news->description !!}
@if($news->tags->count())
?????: @foreach($news->tags as $tag) {{ $tag->name }} @endforeach
@endif
??????:
@if($news->reporter)
{{ $news->reporter->name }}
{{ $news->reporter->name }}

{{ $news->reporter->designation }}

@if($news->reporter->bio)

{{ Str::limit($news->reporter->bio, 100) }}

@endif
@endif @if($related->count())

????????? ?????

@foreach($related as $r) @endforeach
@endif
????????
@foreach(latest_news(8) as $i => $pop)
{{ $pop->title }}
{{ Str::limit($pop->title, 45) }}
{{ time_ago($pop->publish_date) }}
@endforeach
@foreach(get_ads('sidebar') as $ad)
@if($ad->type==='image' && $ad->image_url)ad@else{!! $ad->code !!}@endif
@endforeach
@endsection @section('scripts') @endsection