2024-06-13 15:17:05 +00:00
|
|
|
@extends('hulaki_khabar.layout.layout')
|
|
|
|
@section('content')
|
2024-06-21 07:44:04 +00:00
|
|
|
@php
|
|
|
|
if (!is_null($popup) && !is_null(optional($popup->valid_till))) {
|
|
|
|
$activeStatus = $popup->valid_till >= \Carbon\Carbon::now();
|
|
|
|
} else {
|
|
|
|
$activeStatus = false;
|
|
|
|
}
|
|
|
|
@endphp
|
|
|
|
@includeWhen($activeStatus, 'hulaki_khabar.popup.popup-modal', ['data' => $popup])
|
2024-06-13 15:17:05 +00:00
|
|
|
@include('hulaki_khabar.home.main-news')
|
|
|
|
@include('hulaki_khabar.home.country')
|
|
|
|
@include('hulaki_khabar.home.international')
|
|
|
|
@include('hulaki_khabar.home.politics')
|
|
|
|
@include('hulaki_khabar.home.interview')
|
|
|
|
@include('hulaki_khabar.home.business')
|
|
|
|
@include('hulaki_khabar.home.sports')
|
|
|
|
@include('hulaki_khabar.home.culture-tech')
|
|
|
|
@include('hulaki_khabar.home.entertainment')
|
|
|
|
@include('hulaki_khabar.home.feature')
|
|
|
|
@include('hulaki_khabar.home.main-video')
|
|
|
|
@include('hulaki_khabar.home.society')
|
|
|
|
@include('hulaki_khabar.home.health')
|
2024-06-21 07:44:04 +00:00
|
|
|
@endsection
|