@extends('site.layouts.app') @section('content') @if(!blank($primarySectionPosts)) @include('site.partials.home.primary_section', [ 'section' => $primarySection, 'posts' => $primarySectionPosts, 'sliderPosts' => $sliderPosts, ]) @endif
@php $language = LaravelLocalization::setLocale() ?? settingHelper('default_language') @endphp
@if(@$adsLastPost->ad_type == 'image') @if(!empty($adsLastPost->original_image)) {{ @$adsLastPost->ad_name }} @else {!! $adsLastPost->ad_name !!} @endif @elseif(@$adsLastPost->ad_type == 'code') {!! $adsLastPost->ad_code ?? '' !!} @elseif(@$adsLastPost->ad_type == 'text') {!! $adsLastPost->ad_text ?? '' !!} @endif
@include('site.partials.home.category_section')
@include('site.partials.right_sidebar_widgets')
@endsection