2024-06-13 15:17:05 +00:00
|
|
|
{{-- politics --}}
|
|
|
|
<section class="default-news-area">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-lg-9">
|
|
|
|
<div class="sport-news">
|
|
|
|
<div class="section-title">
|
|
|
|
<h2>राजनीति <a href="politics.php"><svg xmlns="http://www.w3.org/2000/svg" width="16"
|
|
|
|
height="16" fill="currentColor" class="bi bi-arrow-up-right-circle-fill"
|
|
|
|
viewBox="0 0 16 16">
|
|
|
|
<path
|
|
|
|
d="M0 8a8 8 0 1 0 16 0A8 8 0 0 0 0 8m5.904 2.803a.5.5 0 1 1-.707-.707L9.293 6H6.525a.5.5 0 1 1 0-1H10.5a.5.5 0 0 1 .5.5v3.975a.5.5 0 0 1-1 0V6.707z" />
|
|
|
|
</svg></a></h2>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-7">
|
2024-06-15 16:38:54 +00:00
|
|
|
@foreach ($politics as $type)
|
2024-06-18 18:40:14 +00:00
|
|
|
@if ($type->alias === 'politics')
|
2024-06-15 16:38:54 +00:00
|
|
|
@foreach ($type->news->take(1) as $item)
|
|
|
|
@if ($loop->first)
|
|
|
|
<div class="single-culture-news">
|
|
|
|
<div class="culture-news-image">
|
2024-06-18 18:40:14 +00:00
|
|
|
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
2024-06-15 16:38:54 +00:00
|
|
|
<img src="{{ asset($item->thumb) }}" alt="image"
|
|
|
|
class="img-fluid">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="culture-news-content">
|
|
|
|
<h3>
|
2024-06-18 18:40:14 +00:00
|
|
|
<a
|
|
|
|
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
2024-06-15 16:38:54 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2024-06-13 15:17:05 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-5">
|
2024-06-15 16:38:54 +00:00
|
|
|
@foreach ($politics as $type)
|
|
|
|
@if ($type->alias == 'politics')
|
|
|
|
@foreach ($type->news->skip(1) as $item)
|
|
|
|
<div class="culture-news-post">
|
|
|
|
<div class="row align-items-center">
|
|
|
|
<div class="col-lg-4 col-sm-4">
|
|
|
|
<div class="culture-news-image">
|
2024-06-18 18:40:14 +00:00
|
|
|
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
2024-06-15 16:38:54 +00:00
|
|
|
<img src="{{ asset($item->thumb) }}" alt="image">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-8 col-sm-8">
|
|
|
|
<div class="culture-news-content">
|
|
|
|
<h3>
|
|
|
|
<a
|
2024-06-18 18:40:14 +00:00
|
|
|
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
2024-06-15 16:38:54 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-06-13 15:17:05 +00:00
|
|
|
</div>
|
2024-06-15 16:38:54 +00:00
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2024-06-13 15:17:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Sidebar -->
|
|
|
|
<div class="col-lg-3">
|
|
|
|
<aside class="widget-area mt-50">
|
2024-06-18 18:40:14 +00:00
|
|
|
@foreach ($adsWithChildren as $items)
|
|
|
|
@if ($items->ad_categories_id == 7)
|
|
|
|
<section class="widget widget_featured_reports">
|
|
|
|
<img src="{{ asset($items->thumb) }}" alt="{{ $items->title }}" class="img-fluid">
|
|
|
|
</section>
|
|
|
|
@endif
|
|
|
|
@if ($items->children->isNotEmpty())
|
|
|
|
@foreach ($items->children as $item)
|
|
|
|
@if ($item->ad_categories_id == 7)
|
|
|
|
<section class="widget widget_featured_reports">
|
|
|
|
<img src="{{ asset($item->thumb) }}" alt="{{ $item->title }}"
|
|
|
|
class="img-fluid">
|
|
|
|
</section>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2024-06-13 15:17:05 +00:00
|
|
|
|
|
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2024-06-18 18:40:14 +00:00
|
|
|
|
|
|
|
<section class="default-news-area">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
@if ($ads->isNotEmpty())
|
|
|
|
@foreach ($ads as $ad)
|
|
|
|
@if ($ad->ad_categories_id == 6)
|
|
|
|
<a href="{{ $ad->link }}">
|
|
|
|
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|