content
This commit is contained in:
@ -1,23 +1,23 @@
|
||||
@extends('hulaki_khabar.layout.layout')
|
||||
@section('content')
|
||||
@include('hulaki_khabar.home.main-news')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.country')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.international')
|
||||
@include('hulaki_khabar.home.politics')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.interview')
|
||||
@include('hulaki_khabar.home.business')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.sports')
|
||||
@include('hulaki_khabar.home.culture-tech')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.entertainment')
|
||||
@include('hulaki_khabar.home.feature')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.main-video')
|
||||
@include('hulaki_khabar.home.ads')
|
||||
{{-- @include('hulaki_khabar.home.ads') --}}
|
||||
@include('hulaki_khabar.home.society')
|
||||
@include('hulaki_khabar.home.health')
|
||||
@endsection
|
@ -42,13 +42,14 @@
|
||||
@foreach ($type->news->take(5) as $item)
|
||||
<div class="single-business-news">
|
||||
<div class="business-news-image-fluid">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image-fluid">
|
||||
</a>
|
||||
</div>
|
||||
<div class="business-news-content">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias'=> $item->alias])}}">{{ $item->title }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->title }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -62,7 +63,8 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="post-image-fluid">
|
||||
<a href="{{route('newsDetail',['alilas'=> $item->alias])}}">
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alilas' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}"
|
||||
alt="image">
|
||||
</a>
|
||||
@ -72,7 +74,7 @@
|
||||
<div class="post-content">
|
||||
<h3>
|
||||
<a
|
||||
href="{{route('newsDetail',['alilas'=> $item->alias])}}">{{ $item->title }}</a>
|
||||
href="{{ route('newsDetail', ['alilas' => $item->alias]) }}">{{ $item->title }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -91,20 +93,64 @@
|
||||
</div>
|
||||
|
||||
<div class="col-lg-4">
|
||||
<!-- Sidebar -->
|
||||
<aside class="widget-area">
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads9.jpg') }}" alt="image-fluid">
|
||||
</div>
|
||||
</section>
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads6.gif') }}" alt="image-fluid">
|
||||
</div>
|
||||
</section>
|
||||
@foreach ($adsWithChildren as $parentads)
|
||||
@if ($parentads->ad_categories_id == 9)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($parentads->thumb) }}" alt="{{ $parentads->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@if ($parentads->children->isNotEmpty())
|
||||
@foreach ($parentads->children as $child)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($child->thumb) }}" alt="{{ $child->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
@endforeach
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<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 == 8)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
{{-- <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 == )
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section> --}}
|
||||
|
@ -75,7 +75,8 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="post-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->image) }}"
|
||||
alt="image">
|
||||
</a>
|
||||
@ -86,7 +87,7 @@
|
||||
<div class="post-content">
|
||||
<h3>
|
||||
<a
|
||||
href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -115,12 +116,13 @@
|
||||
@foreach ($type->news->take(1) as $item)
|
||||
@if ($loop->first)
|
||||
<div class="featured-reports-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="{{ $item->title }}">
|
||||
</a>
|
||||
<div class="featured-reports-content">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -137,7 +139,7 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="post-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
@ -146,7 +148,8 @@
|
||||
<div class="col-lg-8 col-sm-8">
|
||||
<div class="post-content">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -159,3 +162,21 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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 == 4)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
@ -143,16 +143,49 @@
|
||||
</div>
|
||||
|
||||
<!-- Sidebar -->
|
||||
|
||||
<div class="col-lg-4">
|
||||
<aside class="widget-area">
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads9.jpg') }}" alt="image"
|
||||
style="margin-top: 10%;">
|
||||
</div>
|
||||
</section>
|
||||
@foreach ($adsWithChildren as $parentads)
|
||||
@if ($parentads->ad_categories_id == 11)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($parentads->thumb) }}" alt="{{ $parentads->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@if ($parentads->children->isNotEmpty())
|
||||
@foreach ($parentads->children as $child)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($child->thumb) }}" alt="{{ $child->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
@endforeach
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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 == 10)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
@ -43,14 +43,44 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="col-lg-4">
|
||||
<aside class="widget-area">
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads9.jpg') }}" alt="image"
|
||||
style="margin-top: 0%;">
|
||||
</div>
|
||||
</section>
|
||||
@foreach ($adsWithChildren as $parentads)
|
||||
@if ($parentads->ad_categories_id == 13)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($parentads->thumb) }}" alt="{{ $parentads->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@if ($parentads->children->isNotEmpty())
|
||||
@foreach ($parentads->children as $child)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($child->thumb) }}" alt="{{ $child->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
@endforeach
|
||||
</aside>
|
||||
</div>
|
||||
<hr>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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 == 12)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
@ -20,14 +20,15 @@
|
||||
@foreach ($type->news as $item)
|
||||
<div class="single-health-news">
|
||||
<div class="health-news-image-fluid">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image-fluid">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="health-news-content">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->title }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->title }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -40,12 +41,24 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="col-lg-4">
|
||||
<aside class="widget-area">
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads5.jpg') }}" alt="image-fluid"
|
||||
style="margin-top: 5%;">
|
||||
</div>
|
||||
</section>
|
||||
@foreach ($adsWithChildren as $parentads)
|
||||
@if ($parentads->ad_categories_id == 15)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($parentads->thumb) }}" alt="{{ $parentads->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@if ($parentads->children->isNotEmpty())
|
||||
@foreach ($parentads->children as $child)
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin-left: 10%;">
|
||||
<img src="{{ asset($child->thumb) }}" alt="{{ $child->title }}">
|
||||
</div>
|
||||
</section>
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
@endforeach
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -24,13 +24,14 @@
|
||||
@foreach ($type->news->take(1) as $item)
|
||||
<div class="single-featured-reports">
|
||||
<div class="featured-reports-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image"
|
||||
class="international-news-image">
|
||||
</a>
|
||||
<div class="featured-reports-content mt-30">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -49,7 +50,7 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="post-image-fluid">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
@ -58,7 +59,7 @@
|
||||
<div class="post-content">
|
||||
<h3>
|
||||
<a
|
||||
href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -74,20 +75,18 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="col-lg-3">
|
||||
<aside class="widget-area">
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/NepalLife-Final-Gif-Artwork-300x200pix2019-04-02.gif') }}"
|
||||
alt="image" class="img-fluid">
|
||||
</section>
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/ncell.gif') }}" alt="image" class="img-fluid">
|
||||
</section>
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/ime-pay-300x2502018-12-16.gif') }}" alt="image"
|
||||
class="img-fluid">
|
||||
</section>
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/300-x-150.png') }}" alt="image" class="img-fluid">
|
||||
</section>
|
||||
@foreach ($adsWithChildren as $ads)
|
||||
@if ($ads->children->isNotEmpty())
|
||||
@foreach ($ads->children as $item)
|
||||
@if ($item->ad_categories_id == 5)
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset($item->thumb) }}" alt="{{ $item->title }}"
|
||||
class="img-fluid">
|
||||
</section>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
@endforeach
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,39 +1,58 @@
|
||||
{{-- main-news --}}
|
||||
<section class="main-news-area">
|
||||
<div class="container">
|
||||
@if($featuredNews)
|
||||
<div class="row">
|
||||
<a href="#">
|
||||
<img src="{{asset('hulaki/assets/img/ad/Kicks_Desktop_1230x100-px_new.jpg')}}" alt="image" class="img-fluid" >
|
||||
</a>
|
||||
<div class="col-lg-12 mt-20">
|
||||
<div class="news-content mt-50 text-center">
|
||||
<h2>
|
||||
<a href="{{route('newsDetail',['alias'=>$featuredNews->alias])}}"><b>{{$featuredNews->title}}</b></a>
|
||||
</h2>
|
||||
@if ($featuredNews)
|
||||
<div class="row">
|
||||
<a href="#">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/Kicks_Desktop_1230x100-px_new.jpg') }}" alt="image"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
<div class="col-lg-12 mt-20">
|
||||
<div class="news-content mt-50 text-center">
|
||||
<h2>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $featuredNews->alias]) }}"><b>{{ $featuredNews->title }}</b></a>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="col-lg-12">
|
||||
<div class="news-content" style="text-align: center; margin: 3%;">
|
||||
<h2>
|
||||
<a href="news-details.php"><b>{{ $featuredNews->short_description }}</b></a>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="single-main-news">
|
||||
<a href="news-details.php">
|
||||
<img src="{{ asset($featuredNews->image) }}" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
<div class="news-content" style="text-align: center;">
|
||||
<p>{!! $featuredNews->content !!}</P>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="col-lg-12">
|
||||
<div class="news-content" style="text-align: center; margin: 3%;">
|
||||
<h2>
|
||||
<a href="news-details.php"><b>{{$featuredNews->short_description}}</b></a>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="single-main-news" >
|
||||
<a href="news-details.php">
|
||||
<img src="{{asset($featuredNews->image)}}" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
<div class="news-content" style="text-align: center;">
|
||||
<p>{!!$featuredNews->content!!}</P>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</section>
|
||||
<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 == 3)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- End Main News Area -->
|
||||
<!-- End Main News Area -->
|
||||
|
@ -113,3 +113,21 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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 == 14)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
@ -15,21 +15,21 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-7">
|
||||
{{-- @dd($politics) --}}
|
||||
@foreach ($politics as $type)
|
||||
@if ($type->alias ==='politics')
|
||||
@if ($type->alias === 'politics')
|
||||
@foreach ($type->news->take(1) as $item)
|
||||
@if ($loop->first)
|
||||
<div class="single-culture-news">
|
||||
<div class="culture-news-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
</div>
|
||||
<div class="culture-news-content">
|
||||
<h3>
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
<a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -48,7 +48,7 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 col-sm-4">
|
||||
<div class="culture-news-image">
|
||||
<a href="{{route('newsDetail',['alias' => $item->alias])}}">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
@ -57,7 +57,7 @@
|
||||
<div class="culture-news-content">
|
||||
<h3>
|
||||
<a
|
||||
href="{{route('newsDetail',['alias' => $item->alias])}}">{{ $item->short_description }}</a>
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->short_description }}</a>
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
@ -74,19 +74,44 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="col-lg-3">
|
||||
<aside class="widget-area mt-50">
|
||||
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/prabhu_pay_onlinekhabar.gif') }}" alt="image"
|
||||
class="img-fluid">
|
||||
</section>
|
||||
|
||||
<section class="widget widget_featured_reports">
|
||||
<img src="{{ asset('hulaki/assets/img/ad/Nabil_jan_300-x-150.gif') }}" alt="image"
|
||||
class="img-fluid">
|
||||
</section>
|
||||
@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
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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>
|
||||
|
@ -1,6 +1,22 @@
|
||||
@extends('hulaki_khabar.layout.layout')
|
||||
@section('content')
|
||||
<!-- Start News Details Area -->
|
||||
<section class="default-news-area pt-5">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
@if ($ads->isNotEmpty())
|
||||
@foreach ($ads as $ad)
|
||||
@if ($ad->ad_categories_id == 17)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="news-details-area bg-ffffff ptb-50">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@ -21,8 +37,7 @@
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-12">
|
||||
<div class="desc-image">
|
||||
<img src="{{ asset($news->image) }}"
|
||||
alt="image">
|
||||
<img src="{{ asset($news->image) }}" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -32,16 +47,24 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin: 5%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/add.gif') }}" alt="image-fluid">
|
||||
<section class="default-news-area pt-5">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
@if ($ads->isNotEmpty())
|
||||
@foreach ($ads as $ad)
|
||||
@if ($ad->ad_categories_id == 16)
|
||||
<a href="{{ $ad->link }}">
|
||||
<img src="{{ asset($ad->thumb) }}" alt="{{ $ad->title }}" class="img-fluid">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="widget widget_featured_reports">
|
||||
<div class=" col-lg-10" style=" margin: 5%;">
|
||||
<img src="{{ asset('hulaki/assets/img/add/add1.gif') }}" alt="image-fluid">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-lg-3" id="sidebar">
|
||||
@ -55,11 +78,14 @@
|
||||
<h3 class="widget-title">पछिल्लो समाचार </h3>
|
||||
@foreach ($recentNews as $item)
|
||||
<article class="item">
|
||||
<a href="{{route('newsDetail', ['alias'=>$item->alias])}}" class="thumb">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image" width="80px" height="80px">
|
||||
<a href="{{ route('newsDetail', ['alias' => $item->alias]) }}" class="thumb">
|
||||
<img src="{{ asset($item->thumb) }}" alt="image" width="80px"
|
||||
height="80px">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h4 class="title usmall"><a href="{{route('newsDetail', ['alias'=>$item->alias])}}">{{ $item->title }}</a></h4>
|
||||
<h4 class="title usmall"><a
|
||||
href="{{ route('newsDetail', ['alias' => $item->alias]) }}">{{ $item->title }}</a>
|
||||
</h4>
|
||||
</div>
|
||||
</article>
|
||||
@endforeach
|
||||
|
@ -124,7 +124,7 @@
|
||||
<div class="col-lg-3 col-md-6" style="margin-left: -60px;">
|
||||
<div class="single-footer-widget">
|
||||
<h2>पछिल्लो खबर </h2>
|
||||
@foreach ($recentNews as $item)
|
||||
@foreach ($latestNews as $item)
|
||||
<div class="post-content">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-4">
|
||||
|
@ -57,14 +57,19 @@
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="index.php">
|
||||
<img src="{{ asset('hulka/assets/img/logo-1.png') }}" class="black-logo" alt="image">
|
||||
<img src="{{ asset('hulka/assets/img/logo-3.png') }}" class="white-logo" alt="image">
|
||||
<img src="<?php echo asset(SITEVARS->primary_logo); ?>" class="black-logo" alt="image">
|
||||
<img src="<?php echo asset(SITEVARS->secondary_logo); ?>" class="white-logo" alt="image">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<img src="{{ asset('hulka/assets/img/add/ads1.gif') }}" alt="image">
|
||||
<img src="{{ asset('hulka/assets/img/add/ads1.gif') }}" alt="image">
|
||||
@if ($ads->isNotEmpty())
|
||||
@foreach ($ads as $ad)
|
||||
@if ($ad->ad_categories_id == 1)
|
||||
<img src="{{ asset($ad->thumb) }}" alt="image">
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-navbar">
|
||||
@ -82,8 +87,14 @@
|
||||
<div class="col-lg-6">
|
||||
<nav class="navbar navbar-expand-sm navbar-light">
|
||||
<a class="navbar-brand">
|
||||
<img src="{{ asset('hulaki/assets/img/add/ads10.gif') }}" class="black-logo" alt="image"
|
||||
style="margin-left: -250px;max-width: 880px; height: auto; display: block;">
|
||||
@if ($ads->isNotEmpty())
|
||||
@foreach ($ads as $ad)
|
||||
@if ($ad->ad_categories_id == 1)
|
||||
<img src="{{ asset($ad->thumb) }}" class="black-logo" alt="image"
|
||||
style="margin-left: -250px;max-width: 880px; height: auto; display: block;">
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
</a>
|
||||
</nav>
|
||||
</div>
|
||||
@ -199,7 +210,7 @@
|
||||
|
||||
@case('tbl_videos')
|
||||
@php
|
||||
$subMenu->link = route('showVideos') @endphp
|
||||
$subMenu->link = route('showVideos'); @endphp
|
||||
@break
|
||||
|
||||
@default
|
||||
|
Reference in New Issue
Block a user