@extends('front.layouts.app', $seo) @section('content')
@if(isset($articleType['custom_ad']))

{!! $articleType['custom_ad'] !!}

Ads
@endif @php($imageUrl = '') @if(isset($article_detail->embed_code) && trim($article_detail->embed_code))
{!! $article_detail->embed_code !!} @if($article_detail->special_tag) {{ $article_detail->special_tag }} @endif
@else @if($article_detail->image['id'])
@php($imageUrl = $article_detail->image['original']) {{ $article_detail->image['alt_text'] ?? $article_detail->title }}
@if($article_detail->special_tag) {{ $article_detail->special_tag }} @endif
@elseif(!$article_detail->image['id'] && $article_detail->is_breaking_news)
{{ $article_detail->image['alt_text'] ?? $article_detail->title }} @if($article_detail->special_tag) {{ $article_detail->special_tag }} @endif
@endif @endif @if($article_detail['photo_courtsey']) {{ $article_detail->photo_courtsey }} @endif

{{ $article_detail->title }}

@include('front.includes.news-details-author')
@include('front.includes.news-details-schema')
{!! $article_detail->intro !!}
{!! $article_detail->embeded_description !!}
@if(isset($article_detail->live_updates) && $article_detail->live_updates->count())
LIVE Updates
@foreach ($article_detail->live_updates as $key => $value)

{{ $value->title }}

{!! \App\Helpers\Helper::inIST($value->add_date) !!}

@endforeach @endif @include('front.includes.news-author-details') @include('front.includes.support')
@include('front.includes.relatedArticles')
@include('front.includes.otherArticles')
@endsection