@extends('front.layouts.app') @section('content')

ProductAlert is the place to be for top rated product reviews with recommendation such as the right price, latest trend, from the best brands from {{ $country_locale->country_iso == '*' ? 'the whole world' : get_country_name_by_iso($country_locale->country_iso) }}.

@if ($featured_posts->count() > 0)

Featured Articles

@foreach ($featured_posts as $post)
@include('front.partials.featured_post_card', ['post' => $post])
@endforeach
@endif @if (count($latest_posts) > 0)

What's New in {{ get_country_name_by_iso($country_locale->country_iso) }}

@foreach ($latest_posts as $post)
@include('front.partials.small_list_card', ['post' => $post])
@endforeach
@if ($country_locale->country_iso != '*') All News & Updates @else All News & Updates @endif
@else
Oops! Nothing much here yet. Stay tuned!
@endif @endsection