master_template/resources/views/hulaki_khabar/home/entertainment.blade.php

79 lines
5.1 KiB
PHP
Raw Normal View History

2024-06-13 15:17:05 +00:00
{{-- entertainmen --}}
<div class="container-fluid" style="background-color: #e8e9eb;">
<!-- Start Default News Area -->
<section class="default-news-area" style="background-color: #e8e9eb; margin: 5%;">
<div class="container">
<div class="row">
<div class="col-lg-12" style="margin-top: 5%;">
<!-- Social and Opinions -->
<div class="row">
<div class="col-lg-12">
<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="sports-slider owl-carousel owl-theme">
<div class="sports-item">
<div class="row align-items-center">
2024-06-15 16:38:54 +00:00
@foreach ($entertainment as $type)
@if ($type->alias == 'entertainment')
@foreach ($type->news->take(3) as $item)
<div class="col-lg-4">
<div class="single-sports-news">
<div class="sports-news-image">
<a href="news-details.php"><img
src="{{ asset($item->thumb) }}" alt="image"
style="margin-bottom: 5%;"></a>
<div class="sports-news-content">
<h3>
<a
href="news-details.php">{{ $item->title }}</a>
</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 class="sports-item">
<div class="row align-items-center">
2024-06-15 16:38:54 +00:00
@foreach ($entertainment as $type)
@if ($type->alias == 'entertainment')
@foreach ($type->news->skip(3) as $item)
<div class="col-lg-4">
<div class="single-sports-news">
<div class="sports-news-image">
<a href="news-details.php"><img
src="{{ asset($item->thumb) }}" alt="image"
style="margin-bottom: 5%;"></a>
<div class="sports-news-content">
<h3>
<a
href="news-details.php">{{ $item->title }}</a>
</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>
</div>
</div>
</div>
</div>
</section>
</div>