@extends('master') @section('title'){{ config('app.name') }} @stop @section('description', 'This is description tag') @section('content') @if (Session::has('payment_message')) @php $response = Session::get('payment_message') @endphp
{{{ $response['message'] }}}
@endif @php if (Schema::hasTable('users')){ $slide_unserialize_array = App\Models\SiteManagement::getMetaValue('slides'); $welcome_slide_unSerialize_array = App\Models\SiteManagement::getMetaValue('welcome_slides'); $currentEdition= App\Models\Edition::getCurrentEdition(); $currentEditionArticles=App\Models\Article::getCurrentEditionArticle($currentEdition->id); $published_articles = App\Models\Article::getPublishedArticle(); $page_slug = App\Models\SiteManagement::getMetaValue('pages'); $page_data = App\Models\Page::getPageData($page_slug[0]); if(!empty($page_data)){ $welcome_desc = preg_replace("/]+\>/i", " ", $page_data->body); }else{ $welcome_desc = ""; } } @endphp

Updates

@php $notice_data = App\Models\SiteManagement::getMetaValue('notices'); @endphp @if (!empty($notice_data))
@php echo htmlspecialchars_decode(stripslashes($notice_data['notice'])); @endphp
@endif
@if (!empty($published_articles))

Current Issue

{{{trans('Edition Img')}}}

{{{ $currentEdition->title }}}

Published: : {{{ substr($currentEdition->edition_date,0,10)}}}

Articles

@if (!empty($currentEditionArticles))
@foreach ($currentEditionArticles as $article)
@php echo Illuminate\Support\Str::limit($article->excerpt, 105, '') @endphp
pdf
@endforeach
@else No Articles Found @endif
@include('includes.widgetsidebar')
@endif
@if (!empty($page_data))
@if (!empty($welcome_slide_unSerialize_array))
@endif
{{{$page_data->sub_title}}}

{{{$page_data->title}}}

@php echo Illuminate\Support\Str::limit(stripslashes($welcome_desc), 500, '') @endphp
@endif
@if (!empty($published_articles))

All Volumes

View All
@endif
@endsection